Learn R Programming

UniDOE (version 1.0.2)

DesignPairPlot: Draw pair plot for design of experiments

Description

This function takes a design D and a boolean value Diag to draw pair plot.

Usage

DesignPairPlot(D,Diag)

Arguments

D

a matrix object. Design of Experiment.

Diag

a boolean R object.

Value

A pair plot

References

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.

Examples

Run this code
# NOT RUN {
##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)

# }

Run the code above in your browser using DataLab