SETGEN.print.parameters {SETGEN} | R Documentation |
This function prints the parameters of an analysis in a readable format.
SETGEN.print.parameters(sum.list , file = "" , indentinc = " ")
sum.list |
A list as returned by SETGEN
in the component summary . |
file |
The name of a file to store the summary. If file is "" (default) the summary list is written onto the screen. |
indentinc |
The indent for formatting the output. |
This function prints the parameters of an analysis returned by the function SETGEN
in the component summary
.
The function SETGEN
uses optionally this function to write the parameters of an analysis
to a file with the extension .summary
file.
Beck, M.
sl <- list(list(tag="Example",value="Level 1",level=1), list(tag="Example without value",level=1), list(tag="Example",value="Level 2",level=2), list(tag="Another stupid example",value="Level 3",level=3)) SETGEN.print.parameters(sl) # standard indent SETGEN.print.parameters(sl,indentinc=" ") # large indent