Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
0answers
160 views

controlling the output with RApacheOutputErrors

I have activated ROutputErrors in r.conf and it works as is suppose to do. When I have an error I get this: Oops!!! rApache has something to tell you. View source and read the HTML comments at ...
7
votes
1answer
111 views

How can I allow rapache/brew to securely connect to a MySQL database?

I'm developing a web application using rapache and brew. Within the R code, I want to use the RMySQL package to query a MySQL database, but I am questioning the best way to access the login details ...
4
votes
1answer
438 views

Rscript + PHP exec() command vs rapache

Say I want to have a simple web app that takes some user input, performs a quick calculation in some predefined R script, and returns some cool looking graphic with say ggplot. One way to do this ...
3
votes
1answer
96 views

What's the intention of opencpu.org compared to other approaches?

Lately I was pointed to http://opencpu.org/ . Nifty website, but after browsing for a little while I wasn't so sure where it is located in the R landscape compared to e.g. rApache or RPy2. After ...
3
votes
1answer
145 views

lattice levelplot only fails under RApache

I'm working on a PHP web app that calls R through curl and RApache. Most things work fine. But one lattice plot throws this error: RApache Warning/Error!!!Error in uy + c(-1, 1) : non-numeric ...
1
vote
1answer
137 views

cannot open file 'Rplots.pdf' using rapache

I am trying to generate a pie chart on my browser using rApache my R code is this library(MASS) school = painters$School school.freq = table(school) pie(school.freq) when i ...
1
vote
1answer
74 views

R with CGI Web Interface - Most flexible option

I have been exploring some options for implementing an R Web interface where users will have the option of selecting certain criteria, for eg., date ranges, plot type, etc. The issue is that a number ...
1
vote
1answer
150 views

RApache Configure Does Not Recognize R Installed with Shared Library

All: Apologies in advance for what I hope is an easy question. It's been many years since I've worked in a Unix(-like) environment... I'm trying to install RApache on a web server running the RHEL5 ...
1
vote
1answer
112 views

RApache config problem

My sysadmin installed RApache for me on our 64 bit Solaris box. I can access the RApacheInfo page here, indicating that the module was successfully installed. There is the following entry in the ...
1
vote
3answers
120 views

How do I uninstall rapache?

I want to uninstall rapache, make uninstall doesn't seem to do anything and a look at the rapache documentation and a google search turns up nothing. Any help would be great
1
vote
1answer
294 views

Problem Configuring RApache on OS X 10.5.8

I've been trying to get RApache set up properly on my Macbook Pro running OS X 10.5.8. After installing RApache successfully (I think), I added the following to the httpd.conf file as suggested in ...
0
votes
1answer
92 views

Rapache, can not use passed argument

i used boxcox transformation and got a numeric variable lambda, but i can not read it in the next page, if i do: lambda<-GET$lambda i can not later read the variable "lambda" important to mention ...
0
votes
1answer
167 views

How write to file using rapache?

We are trying some tables data to a file with no success. using write.csv. Here is some example code that we try: > <% > > X<-c(1:666) > > print(X) > > ...
0
votes
1answer
130 views

Problems creating plot with boxcox using rapache module function

I'm trying to create a plot using boxcox function from package MASS. but it's creating an rapache error. The r code: <% csvDF<- read.csv(GET$name1, header=TRUE) ...
0
votes
1answer
96 views

What is the right way to pass value from php to r

I'm trying to pass a variable value from my php code to the r processing environment. for example: <?php $val=5; ?> <% print (val) %> Obviously this doesn't work. What is the ...