Basics Flashcards
abc
Assigning values to objects (vectors)
+ - * /
Arithmetic operators
install.packages (“…”)
Installing external packages
library (“…”)
Loading external packages
ABC
Declaring a function / writing a function
qplot (x,y)
x = c(...) y = c(...)
Constructing a scatter plot
qplot (abc, binwidth = #)
Constructing a histogram
sample (object, size, replace, prob)
sample (abc, 3, TRUE, prob = c(…))
Sampling of a given object. Object = Vector Size = # of samples Replace = TRUE (object to be repeated) Prob = probability of each vector to be occurred
?function
?qplot, ?sample
To check the property of a function (inbuilt or externally loaded)
replicate (#, function ())
replicate (10000, roll ())
Repeats a function / command many times.
args (ABC)
To see an argument of the function
is.vector (abc)
Tests if an object is an atomic vector (TRUE / FALSE)
length (abc)
Returns the length of an atomic vector
die = c(1, 2, 3)
typeof (die) ## "double"
It’s a double type of atomic vector
die = c(1L, 2L, -3L)
typeof (die) ## "integer"
It’s a integer type of atomic vector
die = c(“hello”, “world”, “!”)
typeof (die) ## "character"
It’s a character type of atomic vector
die = c(TRUE, TRUE, FALSE)
typeof (die) ## "logical"
It’s a logical type of atomic vector