palmerpenguins
ggplot2
names
values
readr::read_csv
janitor
skip = n
comment = "#"
col_names = FALSE
col_names
col_types
problems()
NA
\
fct_reorder()
dplyr::antijoin
forcats 1.0.0
join_by()
rescale01()
across()
[
[[
$
apply()
for()
In base R, give me columns y and z for the rows where x > 1.
y
z
x
df
## x y z ## 1 1 k FALSE ## 2 2 l TRUE
df[df$x > 1, c("y", "z")]
## y z ## 2 l TRUE