Live data from Hacker News

Building a statistical significance testing web service powered by R

garysieling.com

1–10 of 11 posts

Re: Building a statistical significance testing web service powered by R

#4

Would it be possible to code everything in something like Django to handle the HTTP, view parts, and farm out the calculations to R? How would you design that?

Of course, but at that point you likely wouldn't be using any R-leaning webservers; rather, you'd start with any old web server, and then just make shell calls to R. Or, you _could_ do the "R as a service" type thing, and have your normal [Django] stack make a webservice call to the R-webservice.

Re: Building a statistical significance testing web service powered by R

#6

Would it be possible to code everything in something like Django to handle the HTTP, view parts, and farm out the calculations to R? How would you design that?

I made one in pylons. It kept blowing up in the memory. It was a bitch to get up and running and then debug. And then, well, I wasn't sure what I couldn't do with highcharts and python libraries instead.

Re: Building a statistical significance testing web service powered by R

#7

Would it be possible to code everything in something like Django to handle the HTTP, view parts, and farm out the calculations to R? How would you design that?

That's the general direction I am heading, although I haven't picked a front-end yet. I'm thinking of returning the more complex results as JSON, and using ExtJS for grids, charts, etc.

Re: Building a statistical significance testing web service powered by R

#8
post #2

This is really neat! You should post more examples, like if I had a range of data points could I post that data set and have R output a best fit line?

Thanks, glad you liked it, I have more examples coming.

There is a library you can install that looks like a web-based charting frontend for R, although I have not had a chance to try it-

http://www.stat.ucla.edu/~jeroen/ggplot2/

Post reply on HN