Answers for "how to count using if in r"

1

how to count the true values in r

a = c(NA,T,F,F)
sum(a, na.rm=TRUE) # best way to count TRUE values #which gives 1.
Posted by: Guest on October-09-2020
-1

r count dataframe

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

Browse Popular Code Answers by Language