this the original dataset "hk"
select(hk,date,new_cases) "new_cases" lied in the third column in the dataset. It's strange that it showed an error of "'new_cases' not found"
a <- select(hk,new_cases)Then, I tried select one variable. But I failed to draw it. The new dataset was the same as the original dataset after selecting.
select(hk,date)When picking up the "date" variable, it returned NAs
I'm down as I couldn't figure out where problems are.