Learn R Programming

safi (version 1.0)

plot.safidesign: Plotting SAFI designs

Description

Plotting the functional inputs against the functional domain

Usage

"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

Run this code
# 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 

Run the code above in your browser using DataLab