Thorsten
Thorsten

Reputation: 13181

What dev environment should I use for data analysis on Mac?

I'm starting to develop an application and I'm not sure what environment (languages, tools, etc.) I should use. Here are some infos:

Any suggestions would be appreciated. I'd especially like to get a better understanding of some "modern" languages (such as Ruby or Python) if this makes sense for what I want to develop.

Upvotes: 1

Views: 114

Answers (2)

Leo Ditolaghi
Leo Ditolaghi

Reputation: 11

You might also consider the R language, which is cross-platform, open source, and highly capable in a wide variety of dimensions: incredibly varied and complete statistical analysis, plotting capabilities and support for MySQL (and other) database interfaces. You can submit SQL commands to your backend database and manipulate (including date arithmetic), analyze and plot/chart your data in R. Highly recommended. R is an interpreted language, and thus easy to experiment with. I know it also has integration available with Python and I believe Ruby as well.

Another reason that you might find this intriguing is that R is very capable in a vector/matrix sense, akin to Matlab / Octave. Pay special attention to the "data frame" related features of R, as you can retrieve tabular query data as an R data frame, and do calculations on all or specific elements of the frame very easily (for example, calculating means/averages over ranges of dates, etc.

http://www.r-project.org/

Take a look at this if you're interested: cran.r-project.org/doc/manuals/R-intro.pdf

Cheers,

Leo

Upvotes: 1

jgritty
jgritty

Reputation: 11935

Python seems like a good choice. It's probably what I would use, but that's because it's what I'm good at already.

MySQL supports stored procedures from 5.0 forward, I believe. I'm only a self-taught database guy, and I've never had occasion to use them. I'd make sure your host is using a recent MySQL version.

Upvotes: 1

Related Questions