You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## ----skim_dose_cols-----------------------------------------------------------
drskim <- linelist %>%
# Select all columns with names that end in upper case 'D':
select(ends_with("D", ignore.case = FALSE)) %>%
# Produce the skim summary table
skimr::skim()
Add the following documentation:
## check the function ends_with()
?ends_with
## by default the function ignores upper or lower case inputs.
## If we would use the default ignore.case = T, the variable bread would also be selected
drskim <- linelist %>%
# Select all columns with names that end in upper case 'D':
select(ends_with("D", ignore.case = FALSE)) %>%
# Produce the skim summary table
skimr::skim()
The text was updated successfully, but these errors were encountered:
JoaodcPires
changed the title
Remind users to use ?function() when unsure about the use: example with ends_with()
Copenhagen: Remind users to use ?function() when unsure about the use: example with ends_with()
Jan 31, 2023
For the section:
Add the following documentation:
The text was updated successfully, but these errors were encountered: