Learn R Programming

ISDA.R (version 1.0)

intervalGraph3D: IntervalGraph3D

Description

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

Usage

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

See Also

scatterplot3d,interval

Examples

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




Run the code above in your browser using DataLab