The R Book: Getting Started Flashcards

1
Q

Demonstrations of R functions

A

demo()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Find help of library spatial

A

library(help=spatial)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Find contents of a library

A

objects(grep(“spetial”,search())

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Stop multiple graphs whizzing by

A

par(ask=TRUE)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

remove all variables except x

A

rm(list=setdiff(ls(), “x”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly