I want to do some preliminary data analysis by looking at plots of each column in a data frame. I want each column to be plotted separately, and I want to be able to toggle to the next column when I'm ready.
I tried:
graphics.off()
for (i in 2:251){
stocks[,i]
{
plot(stocks[,i])
}}
....however, this results in a really fast slide show, so I don't have time to look at each plot separately.