SyntaxFix
Write A Post
Hire A Developer
Questions
Using the dplyr package, if your data.frame is called df1:
df1
library(dplyr) df1 %>% select(A, B, E)
This can also be written without the %>% pipe as:
%>%
select(df1, A, B, E)