Numbers - R (Numbers) Flashcards

1
Q

42) There are three number types in R:

A

NT (Numeric, Integer, Complex)

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

43) A numeric data type is the most common type in R, and contains any number with or without a decimal.

A

NT (Numeric)

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

44) Integers are numeric data without decimals.

A

NT (Integer)

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

45) Integers: to create an integer variable, you must use the letter L after the integer value:

A

NT (Integer)

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

46) Integer: this is used when you are certain that you will never create a variable that should contain decimals.

A

NT (Integer)

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

47) A complex number is written with an ā€œiā€ as the imaginary part:

A

NT (Complex)

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

48) You can convert from one type to another with the following functions:
as.numeric() as.integer() as.complex()

A

as.numeric() as.integer() as.complex()

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