Y. Yu
Y. Yu
Fixed few little things.
It is not single quote as the text indicates `'+'(1,1)` but rather the backticks, i.e. `` `+`(1,1) ``.
Fixed the Windows path part and added an extra sentence at the end of the section.
Fixed a minor mistake.
Fixed the typo.
It should be "draw." No reason to use past tense.
Added "s" after "shortcoming."
Fleshed out the documentation.
Hi, If `state` has `NA`, it would break the code. Here I use the following example to illustrate it: ``` read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2022/2022-02-08/airmen.csv') %>% count(state, pilot_type, rank_at_graduation, sort = T) %>% #filter(!is.na(state))...
Hi, I am on Windows using `dir_ls()` to walk through all my csv files across various subfolders in a main folder. For example, the base directory for the following example...