What does dynamically typed mean in R?
Types inferred when values are created
Which type represents strings?
Character
Which type represents whole numbers?
Integer (L suffix)
Which type represents decimal numbers?
Numeric
Which type holds complex numbers?
Numeric with imaginary component
Which type holds boolean values?
Which function checks numeric type?
is.numeric()
Which function coerces to integer?
as.integer()
Which functions round numbers? ( 3 )
round(), ceiling(), floor()
Which functions compute basic statistics? ( 5 )
sum(), mean(), sd(), min(), max()
Which function summarizes data frames?
summary()
Which functions create sequences and repetitions?
seq(), rep()
Which function checks character type?
is.character()
as.character()
List out function for string concatenation
Which function counts characters?
Which functions extract substrings? ( 2 )
Which functions change case?
Which functions match patterns?
Which function splits strings?
Which function checks logical type?
Which function coerces to logical?
Which functions test logic across vectors? ( 2 )
Which function returns TRUE indices?
Returns the index of the first occurrence of TRUE or the maximum number if a numeric vector is provided
Which function returns index of first max?