Importing data

Author

Jeffrey R. Stevens

Published

February 7, 2025

  1. Download https://jeffreyrstevens.github.io/dpavir2025/data/newdata.csv and save it in your data/ directory.

  2. Import newdata.csv into an object called newdata using read.csv().

# >
  1. Import https://jeffreyrstevens.github.io/dpavir2025/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 the object newdata3.
# >
  1. Export the newdata3 data as a CSV file to your data/ directory.
# >