Answers for "how to get specific columns from dataframe in r"

C
3

python extract specific columns from pandas dataframe

# Basic syntax:
new_dataframe = dataframe.filter(['col_name_1', 'col_name_2'])
# Where the new_dataframe will only have the column names specified

# Note, use df.filter(['names', ... ], axis=0] to select rows
Posted by: Guest on November-12-2020
0

r - extracting specific columns from a data frame

### Solution 2
library(dplyr)
df %>%
  select(A, B, E)
  
### Solution 2
new_df <- subset(df, select=c("A", "B", "C"))
Posted by: Guest on August-04-2020

Code answers related to "how to get specific columns from dataframe in r"

Code answers related to "C"

Browse Popular Code Answers by Language