I'm building a web app that needs to calculate statistics on a data set. I need to calculate percentiles, averages, modes, and other statistical functions on arrays.
Normally in Python, I would just use scipy, numpy, or nltk which has a huge library of stat array functions. Are there any ruby gems or libraries I can utilize to do this?
In the case that there aren't any existing libraries, is there an easy way to do my data processing in Python while keeping my app in Ruby/Rails?