emma (version 0.1-0)

plot.emma: 3D simulation plot

Description

For a problem with 1 response and 2 input variables (factors) plots a 3D graph and shows how the simulation evolves.

Usage

"plot"(x, n = 50, fn, C = 10,...)

Arguments

x
An object of class 'emma'.
n
The number of factors' levels to be plotted.
fn
The optimization function.
C
The number of time instants used in the EMMA procedure.
...
Other arguments not used.

Value

...

Examples

Run this code
  in.name <- c("x1","x2")
  nlev <- c(20, 20)
  lower <- c(-3, -3)
  upper <- c(3, 3)
  out.name <- "y"
  weight <- 1
  C <- 20
  pr.mut <- c(0.1, 0.07, 0.04, rep(0.01, C-3))

  emma.peaks<-emma(in.name, nlev, lower, upper, out.name, opt = "mx", 
	nd = 10, na = 5, weight, C , w1 = 0.7, w2 = 0.4, c1i = 2.5, 
	c1f = 0.5, c2i = 0.5, c2f = 2.5, b = 5, pr.mut, graph = "no", 
	fn1 = peaks)

  plot(emma.peaks, fn = peaks, n = 50, C = 20)

Run the code above in your browser using DataLab