The R Book: Getting Started Flashcards
1
Q
Demonstrations of R functions
A
demo()
2
Q
Find help of library spatial
A
library(help=spatial)
3
Q
Find contents of a library
A
objects(grep(“spetial”,search())
4
Q
Stop multiple graphs whizzing by
A
par(ask=TRUE)
5
Q
remove all variables except x
A
rm(list=setdiff(ls(), “x”)