parPlot: Parallel Coordinates Plot

Description Usage Arguments Value Examples

View source: R/parPlot.R

Description

Parallel coordinates plot of the inputs/outputs sample.

Usage

1
parPlot(X, maxPoints = 256, cex = 1)

Arguments

X

A MxN matrix of M values for N variables.

maxPoints

Max. number of lines.

cex

Graphical parameter.

Value

A plot.

Examples

1
2
3
4
5
6
fExpr = expression(x1+x2)
x.mu = c(1,1); names(x.mu)=c('x1','x2')
x.u = c(0.1,0.1); names(x.u)=c('x1','x2')
x.pdf = c('unif','triangle'); names(x.pdf)=c('x1','x2')
S=gumS1(fExpr,x.mu,x.u,x.pdf,x.df=NULL,nrunMax=1000)
parPlot(cbind(S$X,S$Y))

ppernot/rgumlib documentation built on May 25, 2019, 11:24 a.m.