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()
fixed() allows to opt-out of the regular expression rules or to ignore case
fixed()
str_view(c("", "a", "."), fixed("."))
## [3] │ <.>
str_view("x X", "X")
## [1] │ x <X>
str_view("x X", fixed("X", ignore_case = TRUE))
## [1] │ <x> <X>