# >Importing data
Download https://jeffreyrstevens.quarto.pub/dpavir/data/newdata.csv and save it in your
data/directory.Import
newdata.csvand name itnewdatausingread.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 = FALSEand name itnewdata3.
# >- Export the
newdata3data as a CSV file to yourdata/directory.
# >