Skip to content

Instantly share code, notes, and snippets.

View alexiswl's full-sized avatar

Alexis Lucattini alexiswl

View GitHub Profile
sepal.length sepal.width petal.length petal.width variety
5.1 3.5 1.4 .2 Setosa
4.9 3 1.4 .2 Setosa
4.7 3.2 1.3 .2 Setosa
4.6 3.1 1.5 .2 Setosa
5 3.6 1.4 .2 Setosa
5.4 3.9 1.7 .4 Setosa
4.6 3.4 1.4 .3 Setosa
5 3.4 1.5 .2 Setosa
4.4 2.9 1.4 .2 Setosa
@raghavmittal101
raghavmittal101 / getRepoContributors.js
Created October 27, 2017 12:27
Get list of contributors to a repo in a given time frame
/*
options = {
"since" : {
"date" : "yyyy-mm-dd",
"time" : "hh:mm:ss"
},
"until" : {
"date" : "yyyy-mm-dd",
"time" : "hh:mm:ss"
}
# ruamel.yaml adds !!omap when using ordered dicts
# and there is no switch to avoid such behaviour
# Here is a workarond to put all keys in specific order
# and instead of following constuctions:
# list:
# - !!omap
# - [key1, value1]
# - [key2, value2]
# create this one:
# list:
@Thiagobc23
Thiagobc23 / gantt.py
Last active March 30, 2024 16:54
Gantt Chart with Matplotlib v2
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.patches import Patch
from pandas import Timestamp
##### DATA #####
data = {'Task': {0: 'TSK M',
1: 'TSK N',
2: 'TSK L',