Skip to content

Instantly share code, notes, and snippets.

View bgbg's full-sized avatar

Boris Gorelik bgbg

View GitHub Profile
View whatsapp_trend.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View before_and_after_stacked_bars.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View before_and_after_spider_charts.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View corona_vs_flu.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View stackoverflow_jobs.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@bgbg
bgbg / emphasizing in graphs.ipynb
Last active November 12, 2018 18:53
Untitled.ipynb
View emphasizing in graphs.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View observation_adjustment.py
np.random.seed(123456)
N = 100
aim = 0
scale = 0.5
adjusted = []
for i in range(N):
curr = np.random.randn() * scale + aim
adjusted.append(curr)
aim = -curr
non_adjusted = np.random.randn(N)*scale
@bgbg
bgbg / asciihist.py
Last active August 17, 2023 09:34
ASCII histograms
View asciihist.py
from __future__ import print_function
import numpy as np
def asciihist(it, bins=10, minmax=None, str_tag='',
scale_output=30, generate_only=False, print_function=print):
"""Create an ASCII histogram from an interable of numbers.
Author: Boris Gorelik boris@gorelik.net. based on http://econpy.googlecode.com/svn/trunk/pytrix/pytrix.py
License: MIT
"""
ret = []
@bgbg
bgbg / monty_hall.ipynb
Created February 7, 2018 12:21 — forked from anonymous/monty_hall.ipynb
monty_hall.ipynb
View monty_hall.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@bgbg
bgbg / israeli_gender_payment_gap.ipynb
Created February 7, 2018 12:16 — forked from anonymous/israeli_gender_payment_gap.ipynb
israeli_gender_payment_gap.ipynb
View israeli_gender_payment_gap.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.