# >
Importing data
Download https://jeffreyrstevens.quarto.pub/dpavir/data/newdata.csv and save it in your
data/
directory.Import
newdata.csv
and name itnewdata
usingread.csv()
.
- Import https://jeffreyrstevens.quarto.pub/dpavir/data/newdata2.csv directly from the URL using
readr::read_csv()
.
# >
- Repeat the previous import of
newdata2.csv
, but add the argumentscol_select = c("Breed", "links")
andshow_col_types = FALSE
and name itnewdata3
.
# >
- Export the
newdata3
data as a CSV file to yourdata/
directory.
# >