Frage

This is a short question, but how do I look up the dimensions of a factor variable in R? I tried:

dim(X)
nrow(X)
ncol(X)

but all return NULL

War es hilfreich?

Lösung

If we have an atomic variable (which a factor is), it will have a length value

X <- factor(letters)

length(X)

## [1] 26

It will also have levels

levels(x)

When X is a factor, it is the following classes

is(X)
[1] "factor"   "integer"  "oldClass" "numeric"  "vector"  

Andere Tipps

Also the str() function is helpful when one has a dataframe and needs to get an idea of many different levels at once.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top