View source: R/sym.all.quantiles.plot.r
sym.all.quantiles.plot | R Documentation |
sym.all.quantiles.plot
sym.all.quantiles.plot(
quantiles.sym,
concept.names,
var.names,
Title,
axes.x.label,
axes.y.label,
label.name
)
quantiles.sym |
A quantile matrix |
concept.names |
Concept Names |
var.names |
Variables to plot |
Title |
Plot title |
axes.x.label |
Label of axis X |
axes.y.label |
Label of axis Y |
label.name |
Concept Variable |
3D Scatter Plot
Jorge Arce Garro
## Not run:
data("hardwoodBrito")
Hardwood.histogram<-hardwoodBrito
Hardwood.cols<-colnames(Hardwood.histogram)
Hardwood.names<-row.names(Hardwood.histogram)
M<-length(Hardwood.cols)
N<-length(Hardwood.names)
BIN.Matrix<-matrix(rep(3,N*M),nrow = N)
pca.hist<-sym.histogram.pca(Hardwood.histogram,BIN.Matrix)
Hardwood.quantiles.PCA<-quantiles.RSDA(pca.hist$sym.hist.matrix.PCA,3)
label.name<-"Hard Wood"
Title<-"First Principal Plane"
axes.x.label<- "First Principal Component (84.83%)"
axes.y.label<- "Second Principal Component (9.70%)"
concept.names<-c("ACER")
var.names<-c("PC.1","PC.2")
concept.names<-row.names(Hardwood.quantiles.PCA)
sym.all.quantiles.plot(Hardwood.quantiles.PCA,
concept.names,
var.names,
Title,
axes.x.label,
axes.y.label,
label.name)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.