intervalGraph3D: IntervalGraph3D

Description Usage Arguments Author(s) See Also Examples

View source: R/intervalGraph3D.R

Description

Constructs a 3D graph of the domain of an intervaled data

Usage

1
intervalGraph3D(xIntervals, yIntervals, zIntervals, yScale)

Arguments

xIntervals

An intervaled data set is passed as parameter representing the x values

yIntervals

An intervaled data set is passed as parameter representing the y values~

zIntervals

An intervaled data set is passed as parameter representing the z values

yScale

The adjustment scale value for the x axis

Author(s)

Ricardo Jorge de Almeida Queiroz Filho <rjaqfcin@gmail.com>, Roberta Andrade de Araujo Fagundes <raaf@cin.ufpe.br>

See Also

scatterplot3d,interval

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
data(mushroom)

zinf= mushroom$zmin
zsup= mushroom$zmax
yinf= mushroom$ymin
ysup= mushroom$ymax
xinf= mushroom$xmin
xsup= mushroom$xmax

z= interval(zinf,zsup)
y= interval(yinf,ysup)
x= interval(xinf,xsup)

intervalGraph3D(x,y,z,0.5)

ISDA.R documentation built on May 31, 2017, 5:18 a.m.