Functions: Exploring Data Flashcards
1
Q
head( )
A
show the first 5 rows of data in a set you’re exploring
2
Q
names( )
A
displays the names of all of the columns in your data set
3
Q
view()
A
view an entire dataset in a new window
4
Q
subset()
A
fast way to filter rows and select specific columns of a data frame (or similar objects like matrices).
Workaround to using complex indexing and logical functions to retrieve a subset of your data
Arguments
x: The data object you want to subset (e.g., a data frame).
subset: A logical expression indicating the rows to keep.
select: Columns to retain (optional).
drop: Logical. If TRUE, reduces the result to the lowest dimension (default is FALSE).