Closed fquaker closed 4 years ago
I´m following the supervised ML case studies course. I´m trying to run the following codes:
stackoverflow %>% count(Remote)
simple_glm <- stackoverflow %>% select(-Respondent) %>% glm(Remote ~ ., family = "binomial", data = .)
I´m getting this message "Error: Column Remote is unknown"
Remote
As long as i´m a very newbie R-user, this issues could be a very basic one.
Thanks,
Federico
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")
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