Articles

Pandas snippets

Import Numpy and Pandas: >>> import numpy as np >>> import pandas as pd Create a 5 rows and 3 columns frame with random integers between 0 and 99: >>> df = pd.DataFrame(np.random.randint(100, size=(5, 3))) >>> df 0 1 2 0 35 66 14 1 30 3 13 2 …
➟ Read more


Plumage 0.5 and 0.6 released

After more than a year in stasis, I just released both version 0.5 and version 0.6 of my Plumage theme for Pelican. Why the sudden burst of activity you might ask? Well, I noticed during last months that some fellow Pelican-ista were still using my theme. And I …
➟ Read more

Plumage 0.4 released

Plumage version 0.4 has just been released. It should also been available soon in the official Pelican’s themes repository. This version include some contributions from a new user. Thanks to Stratos Gerakakis for your bug fixes! :) As you can see in the changelog, it includes some additional features …
➟ Read more