plot.safidesign: Plotting SAFI designs

Description Usage Arguments Value Examples

View source: R/plot.safidesign.R

Description

Plotting the functional inputs against the functional domain

Usage

1
2
## S3 method for class 'safidesign'
plot(x, runs = NULL, ...)

Arguments

x

safidesign-object

runs

vector of runs that shall be plotted, if not provided all runs are plotted

...

optional graphical parameters

Value

One plot for each input, containing all design functions given in runs.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# 1 functional input
s.d <- createSafiDesign(d.f = 1)
plot(s.d)

# 3 functional inputs
s.d <- createSafiDesign(d.f = 3)
s.d2 <- splitSafiDesign(s.d = s.d, new.split.points = list(c(0.5), c(0.25, 0.75), 
  c(0.25, 0.5, 0.75)))
plot(s.d2)
plot(s.d2, runs = 1:2)  # only first two runs 

safi documentation built on May 30, 2017, 8:07 a.m.