Answers for "r count rows dataframe"

C
1

r count rows dataframe

nrow(df)
Posted by: Guest on April-03-2021
-1

r count dataframe

df %>%
  count(column_to_check)
Posted by: Guest on February-27-2021
-1

select number of row dataframe r

df <- df[1:5,]
Posted by: Guest on April-03-2021

Code answers related to "C"

Browse Popular Code Answers by Language