Basics Flashcards

1
Q

abc

A

Assigning values to objects (vectors)

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

+ - * /

A

Arithmetic operators

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

install.packages (“…”)

A

Installing external packages

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

library (“…”)

A

Loading external packages

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

ABC

A

Declaring a function / writing a function

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

qplot (x,y)

x = c(...)
y = c(...)
A

Constructing a scatter plot

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

qplot (abc, binwidth = #)

A

Constructing a histogram

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

sample (object, size, replace, prob)

sample (abc, 3, TRUE, prob = c(…))

A
Sampling of a given object.
Object = Vector
Size = # of samples
Replace = TRUE (object to be repeated)
Prob = probability of each vector to be occurred
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

?function

?qplot, ?sample

A

To check the property of a function (inbuilt or externally loaded)

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

replicate (#, function ())

replicate (10000, roll ())

A

Repeats a function / command many times.

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

args (ABC)

A

To see an argument of the function

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

is.vector (abc)

A

Tests if an object is an atomic vector (TRUE / FALSE)

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

length (abc)

A

Returns the length of an atomic vector

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

die = c(1, 2, 3)

typeof (die)
## "double"
A

It’s a double type of atomic vector

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

die = c(1L, 2L, -3L)

typeof (die)
## "integer"
A

It’s a integer type of atomic vector

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

die = c(“hello”, “world”, “!”)

typeof (die)
## "character"
A

It’s a character type of atomic vector

17
Q

die = c(TRUE, TRUE, FALSE)

typeof (die)
## "logical"
A

It’s a logical type of atomic vector