Querying automotive Quandl data in Python

A quick post on how to query data from Quandl in Python. Quandl can be installed with the “pip install” command in your command prompt. For this simply type “pip install quandl” in your Anaconda command prompt. Quandl is the…

Basic animations with Matplotlib in Python

I want to provide a brief example on how you can create plot-based animations with Matplotlib in Python. Below Python code implements a simple exponential growth animation. Documentation is added directly to the code in the form of comments. Linnart…

Visualizing 2D grids with matplotlib in Python

A 2D grid array plot can be a valuable visualization tool, e.g. in the area of agent-based simulation. In this post I want to give a brief tutorial in how you can visualize a 2D grid array, using matplotlib in…

Introduction to Matplotlib in Python

Besides Pandas and Seaborn I would also like to provide you with a brief introduction to matplotlib. Matplotlib is another important module and library in Python. It is used for data visualization. Below coding example will get you started. The…

Introduction to Seaborn in Python

This post is a rough introduction to the Seaborn module in Python. I use it for data visualization, in combination with Pandas. Read the comments to understand my workflow. Any questions you can leave as a comment at the bottom…