How to check if a variable is categorical with R?

Donbeo picture Donbeo · Jan 5, 2014 · Viewed 14.4k times · Source

I have an R data frame and some of the variables are categorical. For example sex is "male" or "female" and "do you smoke" is 0 or 1. Others variables instead are continuous. I would like to know if there is any way to decide if a variable is categorical or not and in case compute its frequencies.

I think in my case a good test would be to check if the variable takes less than k=4 values.

Answer

Matthew Lundberg picture Matthew Lundberg · Jan 5, 2014

While you should use factors for categorical variables, you can find the unique values in a vector x with unique, and count them:

length(unique(x))