Numbers - R (Numbers) Flashcards
42) There are three number types in R:
NT (Numeric, Integer, Complex)
43) A numeric data type is the most common type in R, and contains any number with or without a decimal.
NT (Numeric)
44) Integers are numeric data without decimals.
NT (Integer)
45) Integers: to create an integer variable, you must use the letter L after the integer value:
NT (Integer)
46) Integer: this is used when you are certain that you will never create a variable that should contain decimals.
NT (Integer)
47) A complex number is written with an āiā as the imaginary part:
NT (Complex)
48) You can convert from one type to another with the following functions:
as.numeric() as.integer() as.complex()
as.numeric() as.integer() as.complex()