juliasilge / supervised-ML-case-studies-course

Supervised machine learning case studies in R! 💫 A free interactive tidymodels course
https://supervised-ml-course.netlify.app/
MIT License
222 stars 76 forks source link

Issues in chapter 2, in (Remote counting) #39

Closed fquaker closed 4 years ago

fquaker commented 4 years ago

I´m following the supervised ML case studies course. I´m trying to run the following codes:

stackoverflow %>% count(Remote)

and

simple_glm <- stackoverflow %>% select(-Respondent) %>% glm(Remote ~ ., family = "binomial", data = .)

I´m getting this message "Error: Column Remote is unknown"

As long as i´m a very newbie R-user, this issues could be a very basic one.

Thanks,

Federico

fquaker commented 4 years ago

I could solve it by using the csv given in the data file of this repository.

stackoverflow <- read_csv("https://github.com/juliasilge/supervised-ML-case-studies-course/raw/master/data/stackoverflow.csv")