Displaying 1 result from an estimated 1 matches for "modelresultstemp".
2010 Dec 11
2
remove quotes from the paste output
...arameters reads all the output files from the Test folder and
create the following variables in R for each file read:
#C..PilotStudy.Mplus_Input.Test.rep1.out.unstandardized.est
#C..PilotStudy.Mplus_Input.Test.rep2.out.unstandardized.est
#C..PilotStudy.Mplus_Input.Test.rep3.out.unstandardized.est
modelResultsTemp <- as.data.frame(modelResults)
MeansTempC1 = rep(NA ,9)
counter = 1
for (f in 1:3)
{
i=31
for (g in 1:3)
{
OutputFileName <-
paste("modelResultsTemp$C..PilotStudy.Mplus_Input.Test.rep",f,".out.unstandardized.est[",i,"]",sep="")
MeansTempC1[counter]...