DesignPairPlot: Draw pair plot for design of experiments

Description Usage Arguments Value Author(s) References Examples

View source: R/UniDOE_Ext.R

Description

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

Usage

1

Arguments

D

a matrix object. Design of Experiment.

Diag

a boolean R object.

Value

A pair plot

Author(s)

Aijun Zhang, Haoyu Li, Shijie Quan

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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
##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)

UniDOE documentation built on May 2, 2019, 2:38 a.m.