Displaying 1 result from an estimated 1 matches for "axfilt".
Did you mean:
filt
2005 Oct 05
2
output a sequence of plots
I can output two histograms of variables
AXFILTERED and AZPTOP as follows:
win.metafile(filename="C:/AXFILTERED.emf",pointsize=12)
hist(AXFILTERED,breaks=40)
dev.off()
win.metafile(filename="C:/AZPTOP.emf",pointsize=12)
hist(AZPTOP,breaks=40)
dev.off()
But, I actually have a dataframe of 120 variables that I
would like his...