DS4PS / Data-Science-Class

Repository for all files for the Foundations of Data Science I, II and III course sequence.
https://ds4ps.github.io/Data-Science-Class/
1 stars 1 forks source link

Stuck - does anyone know the name of the data set that we need to open? #5

Closed BissKuttner closed 6 years ago

BissKuttner commented 6 years ago

I think that I need to open a dataset to get the answers to the questions but I can't figure out what it is. I am completely stuck.

lecy commented 6 years ago

For Lab-02 and Lab-03, you will read the tax parcels dataset from GitHub with the following commands:

URL <- "https://raw.githubusercontent.com/DS4PS/Data-Science-Class/master/DATA/syr_parcels.csv"
dat <- read.csv( URL, stringsAsFactors=FALSE )

You can then reference the dataset by the name here, "dat", or you can select a different name when loading it.