Hello All, the column of my interest has integer
but I am unable to filter based on values using dplyr::filter()
Here is the screen shot of what I am getting.
The dplyr::filter()
verb takes unquoted column names, so the following should work fine:
temp <- df %>% dplyr::filter(prc_81513 > 0)
Thank you so much for your help!
1 Like
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.