paracoor {denpro} | R Documentation |
Makes a parallel coordinate plot of a data matrix: the coordinates of the observations are plotted so that the coordinate axes are drawn parallel to each other and the coordinates of a single observation are joined with lines.
paracoor(dendat, xmargin = 0.1, paletti = matrix("black",dim(dendat)[1],1))
dendat |
n*d data matrix of real numbers |
xmargin |
positive real number; empty space in left and right |
paletti |
n vector of colors; the lines will be colored with these colors |
Makes a plot on the graphics window
Jussi Klemela
Inselberg (1985), Wegman (1990)
dendat<-sim.data(n=100,type="mulmod") paracoor(dendat) set.seed(1) dendat<-matrix(rnorm(300),100,3) paracoor(dendat) set.seed(1) dendat<-matrix(rnorm(400),100,4) paracoor(dendat)