Last data update: 2014.03.03

R: IntervalGraph3D
intervalGraph3DR Documentation

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

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

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)




Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(ISDA.R)
Loading required package: scatterplot3d
> png(filename="/home/ddbj/snapshot/RGM3/R_CC/result/ISDA.R/intervalGraph3D.Rd_%03d_medium.png", width=480, height=480)
> ### Name: intervalGraph3D
> ### Title: IntervalGraph3D
> ### Aliases: intervalGraph3D
> ### Keywords: ~SDA ~interval
> 
> ### ** Examples
> 
> 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)
> 
> 
> 
> 
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>