1/14
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
FRONT
BACK
What function allows you to see the first few values from each variable in a dataset?
glimpse()
What function allows you to see the portion of a dataset that contains variables of your choosing?
select()
How do you discard undesired variables from a dataset using mutate()?
mutate(keep1, keep2, keep3, .keep = “none”)
What function creates a modified dataset that counts the types of a specific variable OR the summation of another variable associated with the types of a specific variable? How do you select the variables and order the secondary variable?
count()
count(var1, wt = var2, sort = TRUE)
What function obtains the number of rows of the currently referenced dataset?
n()
What function undoes a group_by()?
ungroup()
When does summarize not get rid of non referenced columns?
When inside of a group_by()
What functions return a number of the highest or lowest values of a specified variable, as well as their associated variables?
slice_max()
slice_min()
How do you create a modified dataset with a range of variables from the original?
select(var1:var2)
How do you create a modified dataset with variables from the original that contain a key word? That begins with a key word?
select(contains(“keyword“))
select(starts_with(“keyword“))
Let’s say you want to select a part of a selection. What type of function do you use?
A select helper function
How do you create a modified table with one column removed?
select(-column_name)
FIRST PASS
FIRST PASS
SECOND PASS
SECOND PASS