Hello All,
I have a question regarding exporting a DF to a csv.
The question is: How can I export only specific columns in the DF to a csv file?
I know how to import specific columns, but I can't seem to figure out how to export specific ones.
Example of importing specific columns below:
DF3 <- read.csv("September_Service_Utilization.csv", sep = ",")[,c("Gender", "Age")]
I have tried using select with dplyr / pipe operator to get specific columns that way or have even created a list, but can't seem to get anything to work.
For example, in the DF, I want to export only "Age", "Gender", "ID",
How would I go upon doing that?
All the help is greatly appreciated.
I did not know it a reproduceable table would be needed with such a question / need for help as this scenario.
Thank you!!