Data Types - R (Data Types) Flashcards
35) Variables can store data of different types, and different types can do different things.
Data Types
36) Basic data types in R can be divided into the following types:
DT numeric - (10.5, 55)
37) Basic data types in R can be divided into the following types:
DT integer - (1L, 55L)
38) Basic data types in R can be divided into the following types:
DT complex - (9 + 3i)
39) Basic data types in R can be divided into the following types:
DT character (a.k.a. string) - (“k”, “R is exciting”, “FALSE”, “11.5”)
40) Basic data types in R can be divided into the following types:
DT logical (a.k.a. boolean) - (TRUE or FALSE)
41) We can use the class() function to check the data type of a variable:
DT class()