plot.lmdu | R Documentation |
Plots a Logistic MDU model
## S3 method for class 'lmdu'
plot(
x,
dims = c(1, 2),
ycol = "darkgreen",
xcol = "darkblue",
ocol = "grey",
markersize = 2.5,
labelsize = 3,
...
)
x |
an object of type lmdu |
dims |
which dimensions to visualize |
ycol |
colour for representation of response variables |
xcol |
colour for representation of predictor variables |
ocol |
colour for representation of row objects |
markersize |
size of points |
labelsize |
size of labels |
... |
additional arguments to be passed. |
Plot of the results obtained from lmdu
## Not run:
data(dataExample_lmdu)
Y = as.matrix(dataExample_lmdu[ , 1:8])
X = as.matrix(dataExample_lmdu[ , 9:13])
# unsupervised
output = lmdu(Y = Y, S = 2)
plot(output)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.