SETGEN.print.parameters {SETGEN}R Documentation

Print the parameters of an analysis

Description

This function prints the parameters of an analysis in a readable format.

Usage

SETGEN.print.parameters(sum.list , file = "" , indentinc = "  ")

Arguments

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.

Details

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.

Author(s)

Beck, M.

Examples

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

[Package SETGEN version 0.1 Index]