plot.clmdu: Plots a Cumulative Logistic MDU model

View source: R/plot.clmdu.R

plot.clmduR Documentation

Plots a Cumulative Logistic MDU model

Description

Plots a Cumulative Logistic MDU model

Usage

## S3 method for class 'clmdu'
plot(
  x,
  dims = c(1, 2),
  circles = seq(1, R),
  ycol = "darkgreen",
  xcol = "darkblue",
  ocol = "grey",
  markersize = 2.5,
  labelsize = 3,
  ...
)

Arguments

x

an object of type clmdu

dims

which dimensions to visualize

circles

which circles 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.

Value

Plot of the results obtained from clmdu

Examples

## Not run: 
data(dataExample_clmdu)
Y = as.matrix(dataExample_clmdu[ , 1:8])
X = as.matrix(dataExample_clmdu[ , 9:13])
# unsupervised
output = clmdu(Y = Y, S = 2)
plot(output)

## End(Not run)



lmap documentation built on April 3, 2025, 5:47 p.m.

Related to plot.clmdu in lmap...