histCluster {Rmixmod} | R Documentation |
MixmodResults
]Histograms of data object using parameters from a [MixmodResults
]
to plot densities.
histCluster(x, data, variables = colnames(data), xlab = rep("", length(variables)), main = paste("Histogram of", variables), hist_x_dim = 10000, ...)
x |
an object of class [ |
data |
a vector or data frame containing a quantitative data set. |
variables |
list of variables names (or indices) to compute a histogram. All variables from data by default. |
xlab |
a list of title for the x axis. xlab must have the same length than variables. |
main |
a list of title for the histogram. main must have the same length than variables. |
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(geyser) xem1 <- mixmodCluster(geyser,3) ## Not run: histCluster(xem1["bestResult"], geyser) histCluster(xem1["bestResult"], geyser, variables=1)