## lattice graphics in the playwith interface:
autoplay(lattice=T)
xyplot(Sepal.Length ~ Sepal.Width | Species, data=iris)
dev.off()
## lattice graphics in your usual screen device:
autoplay(lattice=F)
xyplot(Sepal.Length ~ Sepal.Width | Species, data=iris)
## base graphics in the playwith interface:
autoplay(TRUE)
frog <- rnorm(64)
hist(frog)
dev.off()
## base graphics in your usual screen device:
autoplay(FALSE)
hist(frog)
Run the code above in your browser using DataLab