Javascript gotcha ! (if you come from Python)
All keys are strings (unlike in Python) Even though this is a basic, got me really hard times debugging my code after writing a lot in python, where this statement… Read more »
All keys are strings (unlike in Python) Even though this is a basic, got me really hard times debugging my code after writing a lot in python, where this statement… Read more »
Simple script to calculate circular / directional mean of some angular data. Samples is assumed to be in range of <0,2PI>. To get more information about mean of circular quantities,… Read more »
Recently I’ve coded couple of modules for my data visualisation project and I wanted to ensure all my methods and classes are working as they should. I had this structure… Read more »
I can’t think of how many times have just wondered about how awesome the python’s list comprehensions are. I found them extremely handy while I was preprocessing data for my… Read more »
Goal This is short post for people who wants to quickly select data from .csv datafile. Maybe just certain columns, maybe just certain rows. I assume you know how to… Read more »