Data Types - R (Data Types) Flashcards

1
Q

35) Variables can store data of different types, and different types can do different things.

A

Data Types

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

36) Basic data types in R can be divided into the following types:

A

DT numeric - (10.5, 55)

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

37) Basic data types in R can be divided into the following types:

A

DT integer - (1L, 55L)

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

38) Basic data types in R can be divided into the following types:

A

DT complex - (9 + 3i)

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

39) Basic data types in R can be divided into the following types:

A

DT character (a.k.a. string) - (“k”, “R is exciting”, “FALSE”, “11.5”)

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

40) Basic data types in R can be divided into the following types:

A

DT logical (a.k.a. boolean) - (TRUE or FALSE)

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

41) We can use the class() function to check the data type of a variable:

A

DT class()

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