\name{printAMDParameterValues} \alias{printAMDParameterValues} %- Also NEED an '\alias' for EACH other topic documented here. \title{Prints all parameter values in an amd object } \description{ Prints out nominal (current) value for all parameter sets in a object of class \code{amd}. Printout is organized by model name and variable name. } \usage{ printAMDParameterValues(amdObj) } %- maybe also 'usage' for other objects documented here. \arguments{ \item{amdObj}{An object of class \code{amd} describing a model. } } \value{ NULL } \author{Russell Almond} \section{Side Effects}{ Prints the value field of each parameter set object to standard output along with framing comments telling which model and variable is referenced. } \seealso{\code{\link{amd}},\code{\link{parseAMD}} } \examples{ # Assume StatShop is installed on your machine. StatShop <- Sys.getenv("STATSHOP") if (StatShop == "") { warn("StatShop not installed, skipping test.") } else { fc <- paste(StatShop,"TestScripts","ICT","Version0","Hybrid","FixedContext", sep=.Platform$file.sep) ## This command finds the name of the AMD files in the current ## directory. Rest of the script assumes that the first one is the ## one you want to use. amds <- list.files(fc,".amd.xml$") ## This version of the command for Assessment Description files, it ## looks at link models. anAmp <- parseAMD(paste(fc,amds[1],sep=.Platform$file.sep)) ### This command builds the V-Matrix printAMDParameterValues(anAmp) }} \keyword{interface}% at least one, from doc/KEYWORDS