Hi,
You can get a count of all values in a vector using table().
If you don't want to include NA, "", specific values in the count, then specify in exclude parameter.
To see count of rows try as below.
syntax: table(vector,exclude = c(values that you want to exclude),useNA = "no")
table(vector,exclude = c("False"),useNA = "no")