Importing data

Author

Jeffrey R. Stevens

Published

February 8, 2023

  1. Download https://jeffreyrstevens.quarto.pub/dpavir/data/newdata.csv and save it in your data/ directory.

  2. Import newdata.csv and name it newdata using read.csv().

# >
  1. Import https://jeffreyrstevens.quarto.pub/dpavir/data/newdata2.csv directly from the URL using readr::read_csv().
# >
  1. Repeat the previous import of newdata2.csv, but add the arguments col_select = c("Breed", "links") and show_col_types = FALSE and name it newdata3.
# >
  1. Export the newdata3 data as a CSV file to your data/ directory.
# >