Displaying 1 result from an estimated 1 matches for "picturelist".
2001 Jun 20
0
recordPlot usage: add snaps to a list.
...ot;);
a<-recordPlot();
}
}
Note I add in the a<-recordPlot() to try to keep a snapshot. That value
a gets returned. I have tried in many many ways to add that snap a onto
a list of snaps, but all have failed, making me think list does not mean
what I think it does. A
#intitialize a list
pictureList <- list();
#loop through variable names, take return from each histomatic call, and
append
#to pictureList.
for (var in nameList)
if (is.numeric (RandMastMod0[[var]])) {
pictureList <- c(pictureList,
histomatic(NoFlagMod0,RandMastMod0,NoMastMod0,var));
}
After that, pictureList is...