powered by
ndim returns the number of dimensions an object has. This is most useful for arrays, which can have anywhere from 1 to 1000+ dimensions.
ndim
ndim(x)
integer vector of length 1 specifying the number of dimensions in x. If x does not have any dimensions, then O is returned.
x
object that has dimensions (e.g., array).
ndim is a very simple function that is simply length(dim(x)).
length(dim(x))
ndim(state.region) ndim(attitude) ndim(HairEyeColor)
Run the code above in your browser using DataLab