Answers for "r select rows and columns"

1

select columns in r

df %>% select(column1, column2)
Posted by: Guest on February-27-2021
0

r select rows

df[i,] # Selects the ith row, why is to comma needed, idk
Posted by: Guest on December-01-2021

Code answers related to "r select rows and columns"

Browse Popular Code Answers by Language