RPy is a very simple, yet robust, Python interface to the R Programming Language. It can manage all kinds of R objects and can execute arbitrary R functions (including the graphic functions). All errors from the R language are converted to Python exceptions. Any module installed for the R system can ...
0
votes
1answer
10 views
How to plot a scatter diagram using rpy2 in python?
I have a dataset like below in dictionary format,
graph_data={21L: [{'D': 1, 'W': 0},{'D': 0, 'W': 1}],
22L: [{'D': 0, 'W': 1},{'D': 0, 'W': 0},{'D': 1, 'W': 0},{'D': 0, 'W': 0}, {'D': 1, 'W': 0}],
...
0
votes
1answer
28 views
Python rpy2 and quantmod examples
Python programming language has helped me a lot in developing financial data analysis applications. Alternatively, there is the R for data analysis too, which has dedicated financial data analysis ...
2
votes
0answers
54 views
how to determine the source of this error message: mc(): not 'converged' in 100 iterations
The code below is a mixture of R and Python, which is used for determining the Outliers values from a list of values.
When I run this code :
#!/usr/bin/python
from rpy import *
...
1
vote
0answers
39 views
Why the input of a pure R script is different from a combination of R and Python script?
I have this script in R :
from rpy import *
r.library("robustbase")
adjboxStats(c(11232.1, 234.2, 3445532344.3, 34302.3, 203.9, 232223.3, 3434.55), coef = 2.5, a = -4, b = 3, do.conf = TRUE, do.out ...
0
votes
1answer
35 views
Runing R code on `python` with SyntaxError: keyword can't be an expression error Message
I'm looking to run some R code on python
I already installed the R package robustbase on ubunto using apt-get install r-cran-robustbase and rpy packege as well.
from the python console I can ...
0
votes
2answers
19 views
Difference of two IntVectors in Rpy
a and b are both rpy2 IntVectors:
<IntVector - Python:0x10676dfc8 / R:0x7fc714d64948>
[ 81, NA_integer_, NA_integer_, ..., 120, 46, NA_integer_]
How can I calculate the b - a ...
0
votes
2answers
55 views
Python rpy2 and matplotlib conflict when using multiprocessing
I am trying to calculate and generate plots using multiprocessing. On Linux the code below runs correctly, however on the Mac (ML) it doesn't, giving the error below:
import multiprocessing
import ...
0
votes
1answer
53 views
Plotting greek letters and plain text in ggplot2 graphs via Rpy2
How can I make an x or y label like "$\alpha$ + $\beta$ is my label" in a ggplot2 plot within Rpy2? I've tried getting any greek letter on the plot using r.expression:
p = ggplot2.ggplot(mydata) + ...
0
votes
0answers
93 views
Importing rpy2 modules in Enthought Canopy python
I reinstalled R and rpy2 after installing Enthought Canopy python.
In python I can now:
import rpy2
without an error message.
However, when I want to import any specific rpy2 modules, I get the ...
1
vote
1answer
186 views
Installing python module “rpy2” after installing Enthought Canopy
Some of my python scripts use rpy2 as an interface to R, which worked perfectly with the previous Enthought EPD python.
I recently installed Canopy Python from Enthought.
Python now no longer finds ...
0
votes
2answers
60 views
Getting part of R object from python using rpy2
I can get the output I need using R, but I can not reproduce within python's rpy2 module.
In R:
> wilcox.test(c(1,2,3), c(100,200,300), alternative = "less")$p.value
gives
[1] 0.05
In ...
2
votes
1answer
92 views
equivalent of scale_size_area in rpy2 for ggplot2 in Python?
Does rpy2 have an equivalent of scale_size_area() from ggplot2? If not, how can I write it?
I'm referring to this function:
http://docs.ggplot2.org/0.9.3/scale_size_area.html
I would like to scale ...
0
votes
0answers
56 views
Did Vector() in rpy2 make a copy of data?
I am using rpy2 to use R functionality with python coding. As I am concerned with speed issues, I want to make sure I made the right choice of whether a matrix should be an R or python object. I ...
0
votes
0answers
15 views
Getting Error installing rpy2 on Windows7
Error: Tried to guess R's HOME but no R command in the PATH.
I did exactly this:
3. Define environmental variables
Control Panel | Advanced tab | Environmental Variables
define the following: ...
0
votes
0answers
48 views
Converting pandas panel object to rpy2.robjects.vectors.Array object
Is there a function to convert pandas panel (3-dimensional) object to a rpy2.Array object?
I was able to do this to convert only the data to rpy2.Array. But this doesnt set the dimnames/names for the ...
1
vote
1answer
89 views
feeding distance matrix to R clustering from Rpy2
I have the following custom made NxN distance matrix in numpy/scipy:
dist_matrix = array([array([5, 4, 2, 3, 2, 3]),
array([4, 5, 2, 3, 2, 2]),
...
1
vote
1answer
42 views
How to manipulate columns of a data frame
I read data from a CSV file using rpy2's read_csv() which creates a DataFrame. Now I want to directly manipulate an entire column. What I tried so far:
from rpy2.robjects.packages import importr
...
0
votes
2answers
75 views
specifying the format of tick labels in ggplot2 without a transform using scales?
I have a graph in ggplot2 (via rpy2) that formats the x axis on a log2 scale:
p += ggplot2.scale_x_continuous(trans=scales.log2_trans(),
...
1
vote
3answers
64 views
rpy2: check if package is installed
Using rpy2, I want to check if a given package is installed. If it is, I import it. If not, I install it first.
How do I check if it's installed?
from rpy2 import *
if not *my package is ...
1
vote
1answer
89 views
rpy2 and R debugging
After some trouble I successfully installed rpy2.
My aim is to build models (gam; library mgcv of Simon Wood) and use the predict function by passing a pandas dataframe from python through rpy2 to a ...
0
votes
1answer
41 views
rpy2 module not working in Python3.2
I am trying to import the rpy2 (version2.3.4) library into Python (version3.2.3) on a Ubuntu 12.10 machine. The rpy2 documentation says that rpy2 works under all Python 3 versions and I am also ...
8
votes
3answers
185 views
controlling order of points in ggplot2 in R?
Suppose I'm plotting a dense scatter plot in ggplot2 in R where each point might be labeled by a different color:
df <- data.frame(x=rnorm(500))
df$y = rnorm(500)*0.1 + df$x
df$label <- c("a")
...
0
votes
1answer
51 views
model as r function's parameter, when calling the r function using rpy2 from multithreads
This is more of a efficiency problem when calling r functions using rpy2 from multithreads.
The task of the r functions basically load a model file from disk and use the model to classify time ...
0
votes
0answers
92 views
Query PostgreSQL database from using R (rpy2) for timeseries with multiple locations
I have a Postgresql database table that has measurements for z at 16 xy points in space. The measurement z was taken weekly for 1.5 years. Each measurement is an individual record with an attribute ...
1
vote
1answer
132 views
rpy2 / R issue in loess function via Python?
I'm trying to call the R function loess via Rpy2 in Python on this datafile: http://filebin.ca/azuz9Piv0z8/test.data
It works when I use a subset of the data (the first 1000 points) but when I try to ...
0
votes
1answer
41 views
Rpy2 Trapping R Errors and Piping to Python
I am looking for pointers to do the following:
Suppose I use rpy2 to access any function - say lm in R. Sometimes there might be an error when R processes the data. When I use R- Studio, I can see ...
1
vote
1answer
31 views
Changing legends in ggplot2 with rpy2
I am trying to customize a legend in ggplot2 using rpy2. I notice that ggplot2 through rpy2 does not have scale_shape_discrete and other methods that are shown in ...
0
votes
0answers
73 views
image.plot legend in multiple plot layout from rpy2: legend does not occupy full space assigned
I am having an issue with a multiple plot layout that uses image.plot. I am plotting 7 events that have two plots each. The plots in the script are image() plots from interpolation, but the working ...
2
votes
3answers
80 views
Calling Custom functions from Python using rpy2
Is there a way to call functions defined in a file say myfunc.r
---------------myfunc.r --------------
myfunc = function(){
return(c(1,2,3,4,5,6,7,8,9,10))
}
getname = function(){
return("chart ...
2
votes
1answer
248 views
Inputting quantiles to ggplot geom_boxplot using rpy2 in python
I have the following boxplot:
import os
iris = pandas.read_table(os.path.expanduser("~/iris.csv"),
sep=",")
iris["Species"] = iris["Name"]
r_melted = ...
4
votes
0answers
78 views
Getting error in installing rpy2 on windows
I am trying to install rpy2 package and getting following error both with
C:\python27>easy_install rpy2
Searching for rpy2
Reading http://pypi.python.org/simple/rpy2/
Reading ...
0
votes
1answer
119 views
Changing factor order in ggplot2 with Rpy2 in Python
I'm trying to translate the following code into Rpy2 with no success:
neworder <- c("virginica","setosa","versicolor")
library("plyr")
iris2 <- arrange(transform(iris,
...
0
votes
1answer
34 views
geom_dotplot in rpy2?
When I try to use gplot2.geom_dotplot I get the error:
AttributeError: 'module' object has no attribute 'geom_dotplot'
Does this function have a different name in Rpy2? thanks.
0
votes
3answers
93 views
rpy2 object not found error
I am trying to use rpy2 to let me use some r functionality in python. Here is a simple regression I want to do. I create a data frame, convert it to R data frame and then try using R's lm. But the R ...
0
votes
1answer
94 views
convert_to_r_dataframe module object has no attribute
I am new to python and learning pandas. I want to convert a pandas data frame "datframe" to an R-style data frame (to use rpy2 later). To this end I have the following two lines in my code:
import ...
1
vote
0answers
59 views
Installing Rpy2 on MAC
I am trying to install Rpy2 on OSX using easy_install.
sudo easy_install rpy2
I am getting an error message:
Running rpy2-2.3.3/setup.py -q bdist_egg --dist-dir ...
1
vote
1answer
91 views
melting uniquely indexed pandas dataframes for use with ggplot/rpy2
This question is related to (splitting and concatenating dataframes in Python pandas for plotting with rpy2). I'm working with pandas dataframes and am doing various melting/unmelting/concatenation ...
3
votes
2answers
180 views
using rpy2 with IPython notebooks?
Is it possible to use rpy2 (calling ggplot2) with IPython notebooks, and then save them (and share on NBViewer like other notebooks http://nbviewer.ipython.org/)? Is there any challenge in having the ...
2
votes
1answer
105 views
splitting and concatenating dataframes in Python pandas for plotting with rpy2
I have a question about pandas dataframes in Python: I have a large dataframe df that I split into two subsets, df1 and df2. df1 and df2 together do not make up all of df, they are just two mutually ...
0
votes
1answer
81 views
correlation for two lists of data
These two lists contains data something like this
a=[1 2 1 3 1 2 1 1 1 2 1 1 2 1 4 1 ]
b=[ 3480. 7080. 10440. 13200. 16800. 20400. 23880. 27480. 30840. 38040. 41520.
44880. ...
0
votes
1answer
85 views
removing base line from geom_histogram in ggplot2 via rpy2?
I am plotting a histogram with ggplot2 via rpy2 as follows:
p = ggplot2.ggplot(df) + \
ggplot2.aes_string(x="x", colour="sample") + \
ggplot2.facet_grid(Formula("sample ~ .")) + \
...
2
votes
1answer
80 views
is ggplot2.layer fully supported in Rpy2?
I am trying to use ggplot2 layer in my graph plotted via Rpy2, which I don' see described in the manual (http://rpy.sourceforge.net/rpy2/doc-2.1/html/graphics.html)
Is the correct form for calling ...
0
votes
1answer
134 views
How to annotate subplots with ggplot from rpy2?
I'm using Rpy2 to plot dataframes with ggplot2. I make the following plot:
p = ggplot2.ggplot(iris) + \
ggplot2.geom_point(ggplot2.aes_string(x="Sepal.Length", y="Sepal.Width")) + \
...
0
votes
2answers
91 views
Using log axes scales in ggplot from Rpy2
I am trying to format my axes on a log scale from Rpy2 using ggplot. In ordinary R, it's possible to do:
qplot(data=data, x=x, y=y) + geom_point() + scale_y_log2()
To get a log2 axis. When I try ...
1
vote
1answer
83 views
Turning off ggplot2 grids in rpy2
What's the right way to turn off all grids in Rpy2 while using the theme_bw theme? I know I can turn on theme_bw as follows:
ggplot2.theme_set(ggplot2.theme_bw(12))
but unsure how to turn off the ...
1
vote
2answers
45 views
How to use lattice in Rpy2 and save result to pdf?
I am following the documentation for rpy2 here (http://rpy.sourceforge.net/rpy2/doc-2.1/html/graphics.html?highlight=lattice). I can successfully plot interactively using lattice from rpy2, e.g.:
...
2
votes
2answers
672 views
creating multiple scatter plots with same axes in R
I'm trying to plot four scatter plots in 2 x 2 arrangement in R (I'm actually plotting via rpy2). I'd like each to have an aspect ratio of 1 but also be on the same scale, so identical X and Y ticks ...
1
vote
2answers
493 views
rpy2 install on windows 7
I'm trying to install rpy2 on my computer, but I wasn't able to do it.
I downloaded the source package and I tryed to install Rpy2 (rpy2-2.3.2) using the command python setup.py install. This is the ...
1
vote
1answer
62 views
How to remove methods of reference class and the objects in R
This is going to be a very long question. So, pardon me
I have the following scenario, I guess it will be better to give a pseudo code to explain things better
A python file say test.py
def ...
1
vote
3answers
115 views
Installing rpy2 without admin privileges
I am having trouble installing the Python package rpy2. I have already compiled R as a shared library, but I do not have admin priviledges so I am trying to install rpy2 with:
pip install -user rpy2
...

