`rgl` is a 3D visualization device system for R, using OpenGL as the rendering backend.

learn more… | top users | synonyms

0
votes
0answers
21 views

By using rgl plot3d in r, how to customize the plot center

I have a data frame A that can be plotted into a 3-D scatter plot by using plot3d. Is there a way to set the center of the plotting? Like say, I want the A[13,] to be the center of the plot.
2
votes
4answers
53 views

How can I add rows to an R data frame every other row?

Brief: how can I add m rows to my m X n data frame, where each new row is inserted after each existing row? I will essentially copy the existing row, but make a change to one variable. More detail: ...
2
votes
1answer
47 views

how to add axes to 3D histogram (rgl)

I build a histogram in R using the rgl package. library(rgl) rgl.bg(col="#cccccc") x<-rnorm(2500) y<-rnorm(2500) hist3d(x, y, alpha=0.8, nclass=10, scale=30) How can I add an axis with ...
5
votes
1answer
79 views

Save the orientation of a RGL plot3d() plot

I am using RGL and have a 3D plot. I would like to make identical plots where I use color to highlight the distribution of some variable. To do this I would like to have identical plots but I am not ...
0
votes
1answer
115 views

Plotting 3D maps with RGL

I'm trying to plot flat maps in RGL's 3d environment because it should enable maps to be custom zoomed/tilted for a projection that best suits both the data and required output image aspect. This ...
3
votes
3answers
58 views

Draw a translucent sphere using rgl in R

I have a set of data, looks like: x y z 1 1 2 1 2 3 5 7 3 -3 2 4 4 -2 1 1 so each row record the dot coordinate in a 3-D space. I want to plot all the dot as points ...
5
votes
1answer
272 views

fixing interpolation over volatility surface graph in R programming

This script below pulls yahoo data via a function in quantmod, then massages the data around to forumalate a 3D graph with RGL library, attached is a ggplot to show the data i'm trying to create a ...
2
votes
1answer
81 views

How to reduce file size of rgl postscript?

I plotted a 3d surface using rgl which I want to save as a pdf. Even though the plot is fairly simple, the file size is close to 1Mb. require(rgl) f <- function(x,y) { d <- 3 * sqrt(x*x + ...
0
votes
1answer
45 views

Color mismatch using rgl

I am using rgl to create a scatterplot of points from an imported .csv dataset. The colors that I'd like the points to be is set in the dataset. Everything works fine, except that when the ...
3
votes
1answer
161 views

R rgl plot value not showing on axis

I'm using the rgl package in r to plot some data. As done here: http://www.r-bloggers.com/creating-3d-geographical-plots-in-r-using-rgl/ For some reason the scale does not align with the graph. I ...
3
votes
1answer
185 views

How to join efficiently multiple rgl plots into one single plot?

I produced 3D plots with the rgl package for each factor level of my data and saved them as pngs. My data has 30 different levels, which resulted in 30 different image files. Now I would like to ...
0
votes
1answer
187 views

How to plot a regression plane with an interaction in rgl

I want to plot the regression surface from a model with an interaction term using rgl's interactive plotting system. It is easy to plot a regression plane for a model without an interaction term ...
8
votes
1answer
584 views

including a interactive 3D figure with knitr

Using knitr it is possible to embed a rgl 3D graphics in a html document from a Rmarkdown source file: ```{r setup} library(rgl) knit_hooks$set(rgl = hook_rgl) x <- sort(rnorm(1000)) y <- ...
3
votes
2answers
291 views

plot3D - having two plots at once

plot3d() produces a 3d plot that I can twist around and rotate. But when I call plot3d() again, the previous plot goes away and is replaced by this one. How can I make it so that a new XQuartz window ...
1
vote
2answers
100 views

When open new rgl devices, the plot style is very different from the default one

When I use rgl package plot several 3d graphics in different canvas(rgl device) after using rgl.open() and set the bg as white, the plotting style seems so different from the default one. Is there a ...
2
votes
1answer
127 views

How to increase resolution of gif image?

How to increase resolution of gif image generated by rgl package of R (plot3d and movie3d functions) - either externally or through R ? R Code : MyX<-rnorm(10,5,1) MyY<-rnorm(10,5,1) ...
0
votes
1answer
84 views

Have names on the spheres built by rgl package plot3d

Is there a way to have the names shown when use plot3d(rgl) in R to build a 3d graph, cause it's hard to locate which entry the sphere belongs to when I have many spheres to plot on the same ...
0
votes
0answers
126 views

plotting voxel image in R

Do you know if it exist libraries or functions in R to plot voxel objects (3D array)? I found the package rgl that can perform 3d scatter plot, but I am really looking for an equivalent of the ...
0
votes
1answer
109 views

How to specify a graph to color specific points?

I'm graphing a matrix in 3d using the rgl package in R and was wondering how I can color the points of two important groups. I know the row number of the matrix I am trying to identify with a color. ...
1
vote
1answer
595 views

How can I recreate this 3d histogram?

I am talking about this picture: Questions: This is R, not Matlab right? Below the page it says it was made with R.... How can I do this? I mean, how can I create such a 3d scatterplot with ...
1
vote
1answer
74 views

adding a second 3dplot

I have a 3d scatterplot produced as follows: library(rgl) N <- 10000 X <- rnorm(N,0,1) Y <- rnorm(N,0,1) Z <- X * Y want <- Z >0 & X>0 palette <- ...
2
votes
1answer
99 views

3d plot or contourplot of 3-tuples where x&y are NOT in a grid and NOT equally spaced in R

I am trying to visualize 3-tuple points that are NOT in a grid, and x and y are NOT equally spaced. Thus I can not make a matrix as mostly required, nor can I meet the requirements of the lattice ...
3
votes
1answer
230 views

rgl plot: point size does not change when saving as postscript

I'm trying to generate a 3d scatterplot using rgl. It looks great on my screen, but whenever I export it as a PDF (or any other postscript format) it completely ignores any size specifications I use. ...
2
votes
3answers
389 views

How to plot a three dimensional sphere in R based on center and radius?

How can one plot a sphere in R by providing a center point and a radius? For example, something like this: sphere_3d(center=c(1,1,1), r=2)) The plot would appear on a three dimensional coordinate ...
3
votes
1answer
225 views

3D equivalent of the curve function in R?

The curve function in R provides a simple way to plot a function. For example, this will plot a straight line f1 <- function(x) x curve(f1, from=-1, to=1) Is there an equivalent function in R ...
2
votes
1answer
220 views

Trouble while loading R package “rgl”

When I try to load the package I get this error message: Error : .onLoad in loadNamespace() fehlgechlagen, Details: Call: rgl Error: dyn.load(file, DLLpath = DLLpath, ...) Error: Laden von ...
0
votes
0answers
259 views

How to add color in RGL lines3d

I want to draw the cylinear in rgl. The codes are: ###MODELING THE cylinder UNDER UNIFORM CURRENT ##########define the detail parameters H=10;C=50;M<-8 mx<-matrix(NA,nrow=9,ncol=40) ...
2
votes
1answer
327 views

R rgl distance between axis ticks and tick labels

Thanks firstly, to anyone who is taking time out of their day to help me solve my problem - I am a newbie and this is my first post, so please be gentle! I am plotting some point data using ...
2
votes
2answers
218 views

Adding Points to ordiplot3d()

I am making a PCA with vegan{} and I would also like to label my points by factors (instead of by their unique row identities, as is the default for biplot.rda()). For my 2D PCAs I have used the ...
1
vote
1answer
1k views

3d scatterplot in R using rgl plot3d - different size for each data point?

I am using plot3d(x,y,z, col=test$color, size=4) to plot a 3d scatterplot of my dataset with R, but with rgl the size argument only takes one size. Is it possible to have different sizes for ...
3
votes
5answers
2k views

Error in loading rgl package with Mac OS X

I am trying to install rgl package (0.92.858) for R (2.14.2) under Mac OS X (Lion 10.7.3). When I try to load it (library(rgl)), I get the following error: Error : .onLoad failed in loadNamespace() ...
1
vote
2answers
327 views

Cannot change text size in rgl plot

I have a problem changing the text size of a 3d plot I generated with the package rgl. Everything works fine, but I can't effectively change the cex properties of an 3d object. I run R 2.14.1 ...
1
vote
1answer
375 views

Publishing a rgl interactive 3d plot to the web

I'm looking to see if something is possible, or some ideas if it isn't... I've used the rgl package to generate an interactive 3d plot that you can rotate to look at the data from different angles. ...
3
votes
1answer
122 views

Fill an outline in rgl

The following code draws some points and connects them with lines. I want to to fill in the area enclosed by the lines choosing color and alpha. I can't seem to see how to do that using rgl # Open ...
1
vote
1answer
554 views

rgl.postscript: file saved without varying text sizes

From @DWin and @Ben Bolker, we can change the scatter3d function in R to plot "prettier" (http://stackoverflow.com/questions/8204972/carscatter3d-in-r-labeling-axis-better), however, saving the plot ...
5
votes
1answer
823 views

car::scatter3d in R - labeling axis better

I'm using scatter3d and the 3 axes just have two endpoint values. how can I get labels throughout the entire axis, just like the normal plot() function does?
1
vote
3answers
667 views

Make a 3D rendered plot of time-series

I have a set of 3D coordinates (below - just for a single point, in 3D space): x <- c(-521.531433, -521.511658, -521.515259, -521.518127, -521.563416, -521.558044, -521.571228, -521.607178, ...
4
votes
1answer
1k views

3D Plotting in R - Using a 4th dimension of color

I am using the plot3d function to make a 3d plot in my R script. I'd like to add a 4th dimension, which will be color. How can I do this? Specifically, assume I have the following code: plot3d(x, y, ...
0
votes
3answers
191 views

Install non-gem library in Ruby

How do you install a library that is not a gem in Ruby? I'm trying to use graphy. In the example usage, it says to require 'graphy', but even when my ruby file is in the same directory as graphy.rb, ...
10
votes
6answers
2k views

R: using rgl to generate 3d rotatable plots that can be viewed in a web browser?

In the world of the R statistics package, rgl allows me to generate 3d plots that I can rotate with my mouse. Is there a way I can export these plots in a portable format, load them in a web browser ...
3
votes
1answer
1k views

How do I install the R package rgl on Ubuntu 9.10? [duplicate]

Possible Duplicate: Problem Installing rgl I'm trying to install the R package rgl on Ubuntu 9.10. I'm using R version 2.12.1. I got the following error: "configure: error: missing ...
1
vote
2answers
258 views

Text file parsing

I have many text documents that are filled with sudo tables like the example below. What would be the best way to parse out the table into something like a hash or array? Do I write a custom ...
1
vote
2answers
821 views

How do I install the R package rgl on Ubuntu 9.10, using R version 2.12.1?

I'm trying to install the R package rgl on Ubuntu 9.10. I'm using R version 2.12.1. I got the following error: "configure: error: missing required header GL/gl.h" Edit: My original question did not ...
3
votes
1answer
202 views

x y coordinates upside down with rgl

Apologies if I'm missing the obvious... I am plotting a 3d surface with rgl. My code is library(rgl) dem1 = read.table(file="file.txt",skip=5,header=F,na.strings="0.") dem = ...
13
votes
1answer
898 views

Overlay a map on top of a 3d surface map in r

I have created a 3d map using rgl.surface(), mainly following Shane's answer in this post. Using my own data, I get this map On top of this surface map, I would like to add a map of vegetation ...
2
votes
2answers
896 views

error installing RandForestGUI (hence 'rgl', 'X11) in “R version 2.13.1 (2011-07-08)”

I have installed "R version 2.13.1 (2011-07-08)", over "Ubuntu 10.04 - Lucid Lynx". (I use RStudio 0.94.92), with all the headers needed to compile the many different packages I already installed. I ...
3
votes
1answer
4k views

3d scatterplot with colored spheres with R and Rgl

I want to create a 3d scatter plot of spheres with their color being the fourth dimension. I have the data in a csv file where each line indicates the x,y,z position of a particle and I have a column ...
3
votes
2answers
987 views

Help in using rgl package

I installed rgl package with the option --disable-libpng. I tried generating a 3d scatter plot and it crashes. Please help me in resolving this This is the code i am running library(rgl) open3d() x ...
1
vote
1answer
520 views

rgl.snapshot() No Longer Works

I just upgraded R and rgl to the following versions. Now, rgl.snapshot() no longer works. It worked in previous versions. Is there a way around this? R version 2.12.1 (2010-12-16) rgl version ...
8
votes
3answers
12k views

R: Plotting a 3D surface from x, y, z

imagine I have a 3 columns matrix x, y, z where z is a function of x and y. I know how to plot a "scatter plot" of these points with plot3d(x,y,z) But if I want a surface instead I must use other ...

1 2