Watts-College / cpp-523-sum-2022

https://watts-college.github.io/cpp-523-sum-2022/
0 stars 2 forks source link

LAB 5 - Downloading Data Issue #9

Open bbritton55 opened 2 years ago

bbritton55 commented 2 years ago

Hey everyone,

I'm having issues with downloading the m1 & m2 data, I've attached a screenshot. Any recommendations?

Lab 5 pt1 Lab 5 pt2

JasonSills commented 2 years ago

@bbritton55

Are you using a URL link to the data? The link is below. Note that you do not have to run the code this week. You can submit written answers.

Link to the data:https://raw.githubusercontent.com/Watts-College/cpp-523-sum-2022/main/labs/data/engineer-salaries.csv

bbritton55 commented 2 years ago

Am I following the link in the web browser or in R studio? Lsb 5 pt3 Lab 5 prt4

JasonSills commented 2 years ago

@bbritton55

This is a link to the data. I recommend looking at previous labs and repeat the steps. For example, in lab 4 we linked to the data with this code chunk:

Load Data

URL <- "https://raw.githubusercontent.com/DS4PS/cpp-523-fall-2019/master/labs/data/predicting-subjective-wellbeing.csv"
dat <- read.csv( URL, stringsAsFactors=F )

Replacing the link above with the link I provided will pull in your data.

bbritton55 commented 2 years ago

Ok got it, I 'll try that!