DesignPairPlot {UniDOE} | R Documentation |
This function takes a design D and a boolean value Diag to draw pair plot.
DesignPairPlot(D,Diag)
D |
a matrix object. Design of Experiment. |
Diag |
a boolean R object. |
A pair plot
Aijun Zhang, Haoyu Li, Shijie Quan
Zhang, A. and Li, H. (2017). UniDOE: An R package for constructing uniform design of experiments via stochastic and adaptive threshold accepting algorithm. Technical Report.
##e.g.1 n=12 #(must be multiples of q) s=3 q=4 crit = "MD2"#(Mixture L2 criteria) D = DesignQuery(n=n,s=s,q=q,crit="MD2") DesignPairPlot(D) ##e.g.2 n=12 #(must be multiples of q) s=3 q=3 crit = "MD2"#(Mixture L2 criteria) D = DesignQuery(n=n,s=s,q=q,crit="MD2") DesignPairPlot(D,Diag=TRUE)