classnum | R Documentation |
Gives an index vector of the class category of each value of a numerical vector
classnum(x, breaks = "Sturges")
x |
a vector of values for which the indices are desired |
breaks |
one of:
|
The default for 'breaks' is '"Sturges"': see 'nclass.Sturges'. Other names for which algorithms are supplied are '"Scott"' and '"FD"' for '"Friedman-Diaconis"' (with corresponding functions 'nclass.scott' and 'nclass.FD'). Case is ignored and partial matching is used. Breaks and labels are stored as attributes.
A vector of the same length as x, with the index of the class which each value of x belongs to
cut
, classIntervals
x<-rnorm(30)
classnum(x)
classnum(x,breaks="fd")
classnum(x, breaks=c(-1,0,1))
classnum(x,breaks=5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.