Functions: Exploring Data Flashcards

1
Q

head( )

A

show the first 5 rows of data in a set you’re exploring

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

names( )

A

displays the names of all of the columns in your data set

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

view()

A

view an entire dataset in a new window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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).

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