Issues in chapter 2, in (Remote counting)
fquaker opened this issue · 1 comments
fquaker commented
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
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")