dplyr not detecting column names present in data frame

The dplyr package is not detecting columns while its present in data frame

T3 <- AY2021T3 %>% select(`Student ID`, program, `DSS Status`) 

there is a column DSS transfer in my data frame AY 2021 T3 this column is not showing in select statement while typing what will be the reason

Hi,

Welcome to the RStudio community!

In order for us to help you with your question, please provide us a minimal reproducible example where you provide a minimal (dummy) dataset and code that can recreate the issue. Once we have that, we can go from there. For help on creating a Reprex, see this guide:

Good luck!
PJ

Thank you team for response but i found one solution it work for me

T3 <- AY2021T3 %>% select(`Student ID`, program, `DSS Status`,/)

when i inserted / it started showing the column which didn't recognized early in the data frame AY2021T3

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.