create_image_set | R Documentation |
Create a curve set consisting of a set of images, given a list containing
the values of the 2d functions in the right form.
Only 2d functions in a rectangular windows are supported; the values are provided
in matrices (arrays). For more general 2d functions see create_curve_set
.
create_image_set(image_set, ...)
image_set |
A list containing elements |
... |
Do not use. (For internal use only.) |
The given list as a curve_set
.
a <- create_image_set(list(obs=array(runif(4*5*6), c(4,5,6))))
plot(a)
plot(a, idx=1:6)
a <- create_image_set(list(r=list(x=c(10,20,30,40), y=1:5*0.1),
obs=array(runif(4*5*6), c(4,5,6))))
plot(a)
a <- create_image_set(list(r=list(xmin=c(1, 2, 4, 7), xmax=c(2, 4, 7, 11),
ymin=c(1,1.1,2,2.1,3), ymax=c(1.1,2,2.1,3,3.1)),
obs=array(runif(4*5*6), c(4,5,6))))
plot(a)
plot(a, idx=1:5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.