Reputation: 16349
I have a heroku rails app that needs to crunch some serious numbers, and I need to use a stat library like R (worse comes to worse MatLab).
I am looking to an answer to any of these questions:
Upvotes: 3
Views: 982
Reputation: 6983
Heroku is based on Amazon's AWS EC2 Service, one possibility is to manually spin up as needed an EC2 instance with R, etc. and then use that for your number crunching.
If you want to do see if it is feasible try this AMI, which is preconfigured with R.
Upvotes: 1
Reputation: 11
Maybe you want to check out cloudnumbers again, they're public now. I just run a few calculations and it looks quite promising up to now (especiall that they fully setup external dependencies).
Upvotes: 1
Reputation: 66837
There's statistics2
:
http://raa.ruby-lang.org/project/statistics2/
Edit: I should add that there's also an updated version on Github:
https://github.com/abscondment/statistics2
Upvotes: 0