hist {Rmixmod} | R Documentation |
Mixmod
]Histograms of quantitative data from a [Mixmod
] object using parameters
to plot densities.
## S4 method for signature 'Mixmod' hist(x, hist_x_dim = 10000, ...)
x |
an object of class [ |
hist_x_dim |
Dimension of the histogram (???) |
... |
further arguments passed to or from other methods |
Data with the density of each cluster and the mixture density are drawn for each variable.
data(iris) xem <- mixmodCluster(iris[1:4],3) hist(xem) hist(xem,variables=c(1,3)) hist(xem,variables=c("Sepal.Length","Sepal.Width"))