Programming Languages

Python

Python is a general-purpose, open-source programming language known for its simple syntax, easy readability, and efficient commands. It has become the standard in most technical fields, including deep learning, due to its advanced capabilities.

For researchers, Python simplifies complex tasks like visualizations, machine learning, and statistical analysis, often requiring only a few lines of code with the right package.

Additionally, learning Python is easy, especially for those already proficient in another programming language.

Starting with Python

If you have never seen or used Python, we will provide you with useful resources to get you up to speed. This will avoid you getting stuck or learning bad coding practices. Once you are familiar with data types, looping, functions, modules and especially numpy, you should be ready to ‘hit the streets’.

Interactive resources online are one of the best ways of learning Python as they teach you with a hands-on approach. However, some of these require you to pay, which is not always ideal. Hence, we will highlight both payed and free resources for you.

  • DataCamp - Amazing resource full of tutorials and lectures that provide a comprehensive understanding of Python as well as specialized courses that might be useful for you as a researcher.

Some people in the lab have free access to DataCamp. You can ask around to see whether they can provide you with this free access.

  • Codecademy - Very similar to Data Camp with the difference that some of their courses are given for free.

  • Lab in Cognition and Perception (Todd Gureckis) - A nice resource tailored to learning Python from scratch and applying it to neuroscience. If you are just looking to purely learn Python, this is NOT the resource for you as it also include theoretical information about the brain.

  • Python Data Science Handbook - This digital book is a detailed and amazing resource created by Jake VanderPlas. It provides very comprehensive explanations that will ensure a strong programming foundation.

  • Learn Python 3 The Hard Way (Zed Shaw) - This book is a perfect introductory text that, despite its name, will get you up to speed in no time.

You can find the PDF for the book online by typing the title + PDF

  • Introduction to Programming in Python - The Radboud University offers a five-day introduction to Programming in Python course designed for social scientists - with zero experience in programming - who would like to conduct data collection, analysis, and modelling with Python.
Not a Beginner?
  • Python for Neuroscientists (Tomas Knappen) - This series of Python tutorials is directed towards neuroscientists and can serve to refresh your knowledge of some Python commands.

  • Python Research Masters Course (Lukas Snoek) - This is a course designed by Lukas Snoek for Research Masters students from the University of Amsterdam that assumes basic knowledge of programming languagues. It is directed towards behavioral sciences and includes a module of programming in Psychopy

How to use Python?

As with any other programming language, you can only really learn it by using it. Therefore, by far the easiest way to learn Python is to choose a new project and plan up front to do this entire project (or at least a part of it, like all fMRI-analysis) in Python - and stick with it.

We recommend to postpone your learning until you will start using Python for your work. Even when you use some of the resources highlighted above, all the time might be wasted if you do not use the things you have learned consistently.

Python’s Organization

Python is not an all-in-one product. At its core it is a programming language, which comes in different versions (Python 2 and 3). There are different distributions, which contain the pure language in addition to a lot of packages (these are like toolboxes for different needs you might have). Becase Python is open source and not centrally planned, these different distributions might have different ways of updating and maintaining them.

Additionally, Python does not come with a programming environment. This means you need to make use of a interactive development environment (IDE) or a code editor to use it.

All these options can be overwhelming to a beginner. Hence, we always recommend reading a little bit about Python before starting. You can see here for an easy introduction.

In general, our recommendations are:

  • Install Python with Anaconda as a distribution
  • Use virtual environments to maintain dependencies.
  • Use conda to manage packages — or pip but only use pip in a virtual environment.
  • Use one of the following IDEs for programming:
    • PyCharm - Great tool and widely used. Not the default if your laptop has low RAM Memory.
    • VSCode - Easy to use, can be used in the cluster directly, suitable for laptops with limited memory.
    • Jupyter notebooks or JupyterLab - Not the first recommendation, but you might already be familiar with them

MATLAB

Matlab is a programming platform and language that was specifically developed to perform computational mathematics (Matlab stands for Matrix Laboratory). It is tailored specifically for scientists and engineers and has relatively simple syntax. Unlike Python and R, Matlab is paid software, which means a specialized team provides constant updates to the program. On the downside, its prices make it less accessible for the general public.

It used to be the golden standard in neuroscience for a number of years and still is in a lot of places. In general, this is the default programming language at the DCCN given that toolboxes to analyze neuroimaging data (FieldTrip) and present experimental designs (PyschToolbox) were developed at the Donders Institute using Matlab. This means, direct support is available at the DCCN in case you have questions while using this program. Additionally, everyone working at the DCCN gets a free suscription, making it appealing as a first choice (you can ask the Technical Group for help to install it in your computer)

Starting with MATLAB

Being a payed software, the MATLAB creators have great tutorials and documentation on their software online.

Besides their tutorials, there are not a lot of courses online available to learn how to use MATLAB in an interactive way. However, we will provide some resources below that can help you get up to speed with it:

R

R is a programming language and platform for statistical computing and data visualization. It is the preferred software for statisticians and some lab members use it for their statistical analysis.

Similarly to Python, the core R language is the augmented by a variety of extension packages (something like toolboxes) that allows you to do specific analysis. In addition, it is open-source and free software, which makes it readily available and easy to understand.

We would not recommend learning R as your first and only programming language during your time in the lab as you most likely will have to make use of some of the other two programming languages mentioned above (e.g., for creating experiment scripts). However, it is a very powerful tool that in a lot of occassions can do more than what you would expect it, especially for data wrangling and visualizations.

The program R works with an interpreter that looks very similar to the terminal in your computer. To effectively use R, we recommend making use of RStudio, which makes it look like other IDEs.

R also contains RMarkdown, which is a format for writing reproducible, dynamic reports with R (similar to Jupyter Notebooks for Python). It allows you to turn your analyses into high quality documents, reports, presentations and dashboards. This means you can write and keep an always up-to-date manuscript in there (using LATEX) or HTML-Presentations.

Starting with R

One of the main contributors to the programming language R, Hadley Wickham, has created a very useful and interactive book to teach you to do data science with R. It goes through how to use it, look at structures, transform and visualize them.

There is a different way of doing R called the tidy way. This is super useful for organizing your data, reproducibility and doing your statistical analysis. While the resource above contains some information on how to use this ‘tidyverse’, the following book is focused on learning how to use R in a tidy way.

Besides the two books previously mentioned, you can learn R through a variety of interactive tutorials online.

  • DataCamp - This resource contains a large range of courses to learn to use R, from the most beginner friendly to very advanced analysis.

  • Codecademy - Similar to DataCamp, this resource contains tutorials with interactive exercises to learn how to code using R.

The two resources mentioned above require you to have a paid suscription, however, there are also other free options online

  • SWIRL - an R package that teaches you how to use the programming language interactively. You have to install the package and it has instructions that walk you through the most important information to use R.

  • Programming in Psychological Science with R (Michael Nunez and Hannes Rosenbusch) - This is a four week course that introduces master’s students of the University of Amsterdam to the usage of R and Python. It should be beginner friendly and prepare you for the type of usage you will most likely need in your time at the PBL lab.

If none of these materials seem to suit your needs, the Radboud University offers summer courses to learn how to use R: