I want to select some variables from my csv file in R. I used this select(gender*, age*)
, but got the error - object not found. I tried select(`gender*`, `age*`)
and select(starts_with(gender), starts_with(age))
, but neither works. Does anyone know how to select variables with star symbols? Thanks a lot!
- 积分
0 - 话题
0 - 评论
3144 - 注册排名
2161
It is possible that the
select
fromdplyr
is masked byselect
from any other package as this is working fine. Either specify the packagename with::
or do this on a freshR
session with onlydplyr
loaded