I'm currently considering R, MATLAB, or Python, but I'm open to other options. Could you help me pick the best language for my needs? Here are the criteria I have in mind (not in order):

  1. Simple to learn. I don't really have a lot of free time, so I'm looking for something that isn't extremely complicated and/or difficult to pick up. I know some C, FWIW.

  2. Good for statistics/psychometrics. I do a ton of statistics and psychometrics analysis. A lot of it is basic stuff that I can do with SPSS, but I'd like to play around with the more advanced stuff too (bootstrapping, genetic programming, data mining, neural nets, modeling, etc). I'm looking for a language/environment that can help me run my simpler analyses faster and give me more options than a canned stat package like SPSS. If it can even make tables for me, then it'll be perfect.

  3. I also do a fair bit of experimental psychology. I use a canned experiment "programming" software (SuperLab) to make most of my experiments, but I want to be able to program executable programs that I can run on any computer and that can compile the data from the experiments in a spreadsheet. I know python has psychopy and pyepl and matlab has psychtoolbox, but I don't know which one is best. If R had something like this, I'd probably be sold on R already.

  4. I'm looking for something regularly used in academe and industry. Everybody else here (including myself, so far) uses canned stat and experiment programming software. One of the reasons I'm trying to learn a programming language is so that I can keep up when I move to another lab.

Looking forward to your comments and suggestions.


Thank you all for your kind and informative replies. I appreciate it. It's still a tough choice because of so many strong arguments for each language.

  1. Python - Thinking about it, I've forgotten so much about C already (I don't even remember what to do with an array) that it might be better for me to start from scratch with a simple program that does what it's supposed to do. It looks like it can do most of the things I'll need it to do, though not as cleanly as R and MATLAB.

  2. R - I'm really liking what I'm reading about R. The packages are perfect for my statistical work now. Given the purpose of R, I don't think it's suited to building psychological experiments though. To clarify, what I mean is making a program that presents visual and auditory stimuli to my specifications (hundreds of them in a preset and/or randomized sequence) and records the response data gathered from participants.

  3. MATLAB - It's awesome that cognitive and neuro folk are recommending MATLAB, because I'm preparing for the big leap from social and personality psychology to cognitive neuro. The problem is the Uni where I work doesn't have MATLAB licenses (and 3750 GBP for a compiler license is not an option for me haha). Octave looks like a good alternative. PsychToolbox is compatible with Octave, thankfully.

  4. SQL - Thanks for the tip. I'll explore that option, too.

Python will be the least backbreaking and most useful in the short term. R is well suited to my current work. MATLAB is well suited to my prospective work. It's a tough call, but I think I am now equipped to make a more well-informed decision about where to go next. Thanks again!

link|improve this question
2  
Is Windows an essential part of your plans? – pavium Feb 15 '10 at 9:50
1  
All three of his choices are available both in Windows and Linux. – Paul Feb 15 '10 at 11:02
2  
Related: "Bye Matlab, hello Python, thanks Sage" vnoel.wordpress.com/2008/05/03/… – J.F. Sebastian Feb 15 '10 at 17:19
8  
the answers to this question provide a great lesson in sampling bias. – shabbychef Feb 17 '10 at 2:05
@pavium: Actually, Windows isn't essential. I'm amenable to switching to Linux if it helps (and I probably will, at some point). @J.F. Sebastian: Thanks! If I go with python, I'll def look into getting Sage too. @shabbychef: Haha, what makes you say that? I figured Stack Overflow would have a good representation of psychologists and other scientists who program and use the internet. – user273347 Feb 17 '10 at 6:59
show 1 more comment
feedback

closed as off topic by karim79, greyfade, Will Dec 20 '11 at 19:22

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

17 Answers

I think R is the best option, given your criteria.

  1. Simple to Get Started. A substantial portion of the start-up costs for learning a new language is related to installation/set-up/configuration. R is a platform-based DSL--it works out of the box on all major OS. On CRAN, you'll find one-click-to-install binaries for Mac OS X, Windows, and Solaris, and the usual package-manager installs for the major Linux distros. You will almost certainly wish to install additional packages, but in R that's literally point-and-click from a menu of available libraries.

  2. Good for statisticians/psychometricians. This isn't my field, but CRAN shows a 'Task View' (functionally related packages collected under a single rubric) called "Psychometric Models and Methods" which contains 50 or so R packages. In addition, there is a separate Task View called "Social Sciences", which contains another 30 or so packages. See also this link to a special edition of Journal of Statistical Software: Special Edition on Psychometrics in R. This special edition of JSS was published in mid 2007, which suggests that R's among Psychometricians is not completely new. An e-book (as a work in progress) entitled Psychometric Theory with Applications in R by William Revelle is available for free. In addition, there are multiple R packages for each of the topics you mentioned as "advanced stuff". Finally, i'm not sure precisely what you are referring to by "tables"--i.e., whether contingency tables (dead simple in R, call the function 'table' and pass in the variable/data columns) or "data-display" tables, like you would make in LaTex (again, dead simple, using the package 'xtable'--a single command returns the LaTeX markup for a table containing your data that you can export to an editor to further edit/save.

  3. To create, build, and distribute executable programs.... R is a computing platform, and it really shines here, particularly with respect to package building and distribution. In sum, you follow a fairly strict and detailed template for building a package in R (aka extension). In addition, there are (at least) several excellent tutorials on Package building in R. So having built your R Package/Extension, you can either use CRAN to distribute it publicly or make it available via some access-controlled repository--but in either case, this extension, having been created in accord with the R Package Guidelines, can be installed by any R user just by point-and-click or by a single command at the terminal. Once installed, library(yourPackageName) makes it available in the user's current session. All of the help prompts and examples you created are available to that user in just the same way, through the same system, as all other R core features and Packages. Finally, R (through CRAN) has quite a few (over a dozen at my last count) quality GUI-building Packages created for R Developers who want to wrap their Package functionality in a GUI, but lack the expertise required to work directly with a GUI toolkit (i recommend rpanel).

  4. Regularly used in academe and industry. I assume so, but i have no data (though it probably exists) to advise on this point.

link|improve this answer
R has decent coverage in academics. At least at my school, my statistics class gave us a choice between R, Splus and something else, I forget. Probably matlab. – Ricket Feb 27 '10 at 21:18
The questionner wanted to use the language to make canned programs for presenting psychology experiments. That is something R cannot do. – John Aug 13 '10 at 6:28
feedback

Given your priorities, I would highly recommend Python. Since you will want access to some advanced statistical packages, I would suggest calling R libraries from Python when needed via the RPy2. Matplotlib/Numpy/Scipy are all excellent packages for Python, but they are no where as complete in terms of advanced statistics libraries as R. Using Python with RPy2 gives you the best of both worlds.

Edit: A compiled list of useful R packages for psychometrics.

Edit: Example of calling R functions from Python via RPy2:

import numpy
import rpy2.robjects as robjects
import rpy2.robjects.numpy2ri # auto-conversion of numpy data-types to R objects

def prcomp(ndarray):
    """Compute the principal components of a matrix via the R function prcomp."""
    rmat = robjects.RMatrix(ndarray)# convert to R object
    robject_prcomp = robjects.r.prcomp(rmat, retx=True, center=True, scale=False)
    return numpy.array(robject_prcomp.r['x'][0])

Edit: There seems to be some confusion as to why I suggested using R from Python. Python already has a large number of typical statistics implemented. The principal components analysis example above was contrived in order to show how it works in general. In Python you can use the Modular toolkit for Data Processing for PCA:

>>> import mdp
>>> y = mdp.pca(x)

I was just trying to make the point that even if Python is selected because it is easy to learn and is a good general purpose utility language, the RPy2 bridge keeps it from being limited statistically.

link|improve this answer
10  
compared to any Math oriented language like mathlab, this is horrible. – Pop Catalin Feb 15 '10 at 10:15
3  
Meh, you could hide the boilerplate object conversions with decorators easily. In terms of one-liners, it's hard to beat matlab, but IMO Python scales much better to more complex problems. RPy2 gives you access to an enormous number of battle-tested statistics that would be time-consuming (and error prone) to re-implement. – awesomo Feb 15 '10 at 10:23
5  
I agree with awesomo. I've had problems getting MATLAB to scale to large programs. – Chinmay Kanchi Feb 15 '10 at 10:47
4  
I find python to be more natural and easier to learn than R, especially for any kind of procedural programming. Statisticians use R, and R is skilled at vectorial and matrix operations and has data analysis and plotting routines built in. Because programming in R has a number of quirks a short program to do 'any old thing' would be more easily expressed in python than R. Your students would be able to read most simple python programs before they would be able to read their equivalent R programs. R is not a good language for data collection, web development, human subject experiments. – Paul Feb 15 '10 at 10:59
2  
I've used both Matlab and Python, and I can say for sure - Matlab. There are so many details that Matlab handles for you. You can do everything you want in either - it'll just be easier in Matlab. – Marc Feb 16 '10 at 14:09
show 6 more comments
feedback

I use both R and MATLAB on a day-to-day basis, and I've toyed with Python. My experience is that any of the three languages you suggest are perfectly adequate for your needs (though each has its own strengths and weaknesses).

Each language is relatively easy to learn compared to C (that is to say, they are all high-level languages). MATLAB has a very nice development environment that eases the learning curve.

R has the best statistics tools – that is its raison d'etre, after all. In particular, it has many psychology-related tools. See, e.g., the psych, psyphy, QuantPsyc and singlecase packages. There are also many packages for designing trials and experiments.

If you want to create executables, then Python wins here. You can create executables with MATLAB, but you need the compiler toolbox, which will set you back £3750, on top of your MATLAB licence. R packages are not executables; you would need to call R from a program written in some other language.

All three languages have significant traction in academia, industry and beyond. They all have decent support communities as well.

I suggest you ask around in your office to see if anyone has any secret experience with any of the languages – it helps to have someone you can chat to in person. Failing that, a random number generator will happily decide for you.

EDIT: Further thoughts.
MATLAB has an good interactive plotting facility that is easy to learn; R has fantastic static graphics (via the lattice and ggplot2 packages, and many others); I'm not familiar enough with Python to comment on its plotting capabilities.

link|improve this answer
Python does not create executables. – mbq Aug 27 '10 at 11:39
feedback

MATLAB. It is by far the most popular in the field of psychological/cognitive research. All the options that you mentioned and several others will allow you do modeling, statistical analysis etc. But MATLAB is a knock-out winner on your 4th requirement.

I'm in the field of cognitive research myself. I use mostly python, but when I need someone else from the field to understand what I'm doing I use MATLAB. Actually, I use Octave, which is an open source alternative to MATLAB, but since its 99% syntax compatible, its OK.

Just an example showing MATLAB is at least x10 more popular in publications in the APA, Cognition, and Brain and Cognition journals:

(Both searches are since the year 2000)

link|improve this answer
5  
I totally agree. I used to do computational neuroscience/psychophysics, and no tool served me, and my 60+ colleagues, better than matlab. – Fredriku73 Feb 15 '10 at 12:21
feedback

I do research in psychology and switched from SPSS to R a few years back. I've never regretted the switch, although my knowledge of the merits of Python or Matlab is not as great.

Ease of learning: If you have a good understanding of statistics and programming then R is not that difficult. There's a lot of resources on the Internet. I posted a list of R Resources for psychology researchers that might be helpful.

Good for statistics/psychometrics: R has been developed by the statistical community. Thus, it's great for statistics and psychometrics. Doug mentions a few good examples. Here are some further links with regards to specific things you mentioned: bootstrapping, data mining, modeling (check out OpenMX, sem, and lme4). R is great for automating standard and custom analyses. The language for programming in R is the same as for standard data analysis. Thus, R encourages a gradual development in sophistication of analyses (see John Chambers book to get a sense of this design philosophy).

Executable programs: R has excellent data manipulation tools. Thus, you could write a script to transform experimental data and output it in a format that suits. Phil Spector's book is quite good in providing guidance on data manipulation in R.

Regularly used in academe and industry: From personal experience I know many researchers in psychology who use Matlab and many researchers who use R and some who use both.

link|improve this answer
feedback

I vote for R! You can learn Python much faster, but... don't use general purpose programming language if you can use specialized one instead. R has a steeper learning curve, but in this very moment there are more than 2000 packages, and I use mostly psy and psych for psychological stuff, and plyr, reshape, and Hmisc for other non-psych stuff.

I recommend Rob Kabacoff's site and be sure to take a glance at Jeroen Ooms' web application for IRT analysis.

Check out Peter Daalgard's book: Introductory Statistics with R.

Use R!

Edit: Visit r-bloggers.com to stay up-to-date with latest news in R. REvoluion Computing organized webinar ("Introduction to R") for all of those willing to learn R , and the next one will be held on 23rd of February ("7 Ways to Increase your R Productivity"). Note that REvolution Computing promotes it's own product: REvolution R Enterprise 3.1 - a full-blown R GUI with sytnax completion and other helpful stuff. For now, REvolution R Enterprise is (unfortunately) available only for Win and MacOS, but there's a package revolution-r (or vice versa) on Ubuntu. It's not an IDE for R, but just some language optimization patch. I reckon that REvolution R Enterprise will be available for (GNU/)Linux soon. Well... I hope so...

link|improve this answer
feedback

R wins with its gigantic library of statistical routines. The S language per se isn't that overwhelming though and data handling can be cumbersome when compared to SQL queries that achieve the same goal -- luckily there is the sqldf package that allows users to run SQL queries over R data frames. Under Windows, you can also integrate R with Excel/OpenOffice, which could make certain tasks slightly easier.

Python wins as a multi-purpose programming language that can also be used to solve other tasks than conducting statistical analyses. On the long run, I'd expect python or something like incanter (clojure/java-based) to gain popularity at the cost of R.

link|improve this answer
feedback

Python is the way to go. It's pseudocode that works (and on Steroids).

No compiling, no nothing. You just run it like you run it. Also, Python has nice libraries for processing data/stats. Matplotlib and scipy or numpy.

Python is also simple to learn. Easy to read.

Edit: if you want executables/GUI, then Python might not be the best option.

link|improve this answer
1  
I don't think Python is a good option at all. It's nice in general, but not for this case. It has lots of features and concepts that probable (s)he won't use, but will make learning the language harder. – anthares Feb 15 '10 at 10:01
Some pretty sexy GUIs can be made in Python via PyQt4 without much effort. – awesomo Feb 15 '10 at 10:08
Re gui's: there's also pydev for eclipse. – Shane Feb 15 '10 at 11:59
Have you seen two other options? – mbq Aug 27 '10 at 11:41
feedback

+1 for R.

And since no one else mentioned it, you can also have a look at "Using R for psychological research": http://personality-project.org/r/

link|improve this answer
feedback

As someone who's used all of them in Psychology I hope I can give you a breakdown of the costs and benefits.

Matlab - This is the most used of the three languages in your field (in general). It is the only one that is good at both basic analysis and that you can use to program experiments beyond the capability of Superlab. It even does some very advanced programs specifically for your field (SPM, Psychophysics Toolbox) that are frankly unmatched in other languages. It's relatively expensive but there is the Octave alternative. Unfortunately, if your data analysis involved FMRI or EEG the most popular Matlab packages don't work with Octave yet (but I did get it working with Psychophysics toolbox).

Python - The best all purpose programming language of the bunch. Using tools like VisionEgg or even just Pygame one can program up experiments and make executables. It's free. It's probably the easiest to learn. It doesn't have much help for you as far as statistical analysis. If you know how to write your analyses yourself then it's fine. If your use it correctly it can easily be the fastest.

R - This is by far and away the best of the three for statistics. Unlike the others you don't have to know how to write much of your statistics software from scratch. You simply plug in packages and use them. It's the only one of the three that's any use to someone who's a non-programmer and wants to do stats. It's good for data manipulation and is much better than the typical commercial options in your field. However, you cannot use it to program up experiments. It's just for the analysis. (well, design as well, but in the abstract sense, not as in replacing Superlab).

I believe that your options come down to Matlab OR Python+R. You're going to have a hard time replacing R in Python and you can't replace Python in R. So, if you pick Matlab you only have one language to learn. However, the statistical capabilities of Matlab that are easily accessible don't even come close to those of R.

Also, if you only know Matlab you end up being someone who only has a hammer... everything starts to look like a nail.

I strongly recommend Python+R. Python is as good as Matlab for generating experiments and can be used to make double click executables for no cost. R is the best thing you could use for stats. After knowing all three.. and many others, I'm most happy with my Python+R setup.

link|improve this answer
feedback

I'll actually suggest Python, but with a twist:

Learn python so you can use it in conjunction with a Spreadsheet!

  • Resolver One is a propietary application that allows python for the scripting parts
  • PySpread is a free, less developed, alternative.

You will get the simplicity of spreadsheets for the initial, data manipulation, and python for more demanding calculations. This will allow you to learn the language at the same time as you get useful results in your experiments. With time, you will have learned enough to roll your own apps.

I've personally tried Resolver One and found it quite useful; After doing statistical stuff with VBA + Excel (business requirement, not my election) the change was thrilling.

I haven't tried PySpread so I can't comment on it.

link|improve this answer
feedback

My wife is a Psychologist and I have been teaching her SQL. She used SPSS in College and allot of Excel in her work with Data Analysis. But using SQL Server Developer Edition and T-SQL she has been able to get more from her data and then use reporting services to produce great presentation charts and reports for talks and publication.

It is easy to learn and can do allot. You can download a Free version of SQL Server Express or purcahse the Developer Edition for about $40 which gives you the complete Enterprise version with a license for a single machine.

link|improve this answer
feedback

I am in the same kind of situation myself, being a social psychologist, having recently (and finally) entered the exciting world of Linux/Ubuntu, and being a huge FOSS fan. This won't be much help after all the great answers, but I couldn't help say: I've decided to learn both R and Python. R, mostly to free myself of SPSS/PASW and to get deeper insight into/have more flexibility regarding statistical procedures. Python, mostly to be able to program experiments (hopefully, with the help of PyEPL and PsychoPy, we'll see...).

I've done quite a lot of browsing the web about these, and without exception, everybody has written great things about both R and Python. I don't know how I will manage to learn both, as I'm about to start my first Asst. Prof. position, but I'm very excited and confident that they will pay off.

I've had minor experience with MATLAB as a grad student, and have seen it used extensively by the neuroscience-oriented psychologists in my program. But it's proprietary and I'm looking to go completely FOSS. Good luck to you.

link|improve this answer
feedback

Since there are lots of good responses already I'm not going to cover the exact same ground, but I think you should evaluate Octave carefully before you decide to use it as your go-to solution. Its syntax is highly compatible with MATLAB, yes, but sometimes it can be slower than the seven year itch by comparison with its proprietary counterpart. If you're faced with having to write intensely loopy code, you might want to use Python or R instead. (I once wrote a program in Octave, found out it was too slow, transliterated it into SAGE -- a Python variant with the same syntax but different semantics -- and found that it ran about 10 times faster. I later moved the Octave program to a MATLAB server at work and observed a similar speedup.)

link|improve this answer
feedback

If money does not matter I would suggest MATLAB. IMO it is powerful and comfortable to work with and performant.

However, considering the fact that MATLAB (+ compiler + a few toolboxes) can easily be 10k€ AND causes additional yearly fees, where R comes for free the cost-benefit ratio clearly favors R.

link|improve this answer
feedback

I have worked in all three, and I find all three both great and irritating. Others have addressed most of the points that I'd raise, so my suggestion is either:

  1. Use what is used by others with whom you'd like to collaborate.
  2. Whatever you can get these collaborators to switch to.

Having collaborated with a lot of people using a lot of languages, I've found a lot are using SPSS. I'm not going to use SPSS - it is inadequate for other projects. Similarly, I can't really ask others to adopt Matlab if they're not already using it.

In a general sense, that leaves R and Python. More computationally inclined individuals may like Python. More statistically inclined folks will like R. For collaborators not inclined toward being strong in either, and who prefer to focus on their domain expertise, adopting R has proven easier for them. This appears to be due to the examples already available, the fact that it is statistical in nature (and thus closer to what they want from SPSS or SAS: p-values! YAY!), and that they can then talk wisely about the output of their "statistical software".

I believe that you will enjoy all three languages, and only recommend to start with the one that will incur the least friction in moving forward with your research and collaborations. Only you can answer that question.

link|improve this answer
feedback

MUST BE MATLAB if you are in Psych research, and any form of brain imaging.

You can then use SPM

for spatial normalization of brain images, etc etc.

People saying it does not scale to large problems - it is the defacto standard in science and also finance. I work in brain imaging, my mate works for a hedge fund we both use it - python is for noobs.

link|improve this answer
3  
-1 for the disparaging remark towards people that prefer a different language than the one you use. – Sharpie Feb 15 '10 at 19:08
5  
-1 for "python is for noobs". – kikito Feb 16 '10 at 8:22
tongue in cheek – NimChimpsky Feb 16 '10 at 14:35
-1 for not understanding the question – fortran Feb 23 '10 at 11:01
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.