Created
December 16, 2025 13:18
-
-
Save kaspermunch/b6043f46bafec22d29ae079859593a4a to your computer and use it in GitHub Desktop.
Notebook header for %%header cell magic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys, os | |
| from functools import partial | |
| import warnings | |
| import numpy as np | |
| import pandas as pd | |
| from numpy.random import gamma | |
| from numpy.random import beta | |
| from scipy import stats | |
| import matplotlib.pyplot as plt | |
| %config InlineBackend.figure_format = 'retina' | |
| # %config InlineBackend.figure_format = 'svg' | |
| import seaborn as sns | |
| sns.set_style('ticks') | |
| sns.set_context('paper') | |
| from multiprocess import Pool, cpu_count # multiprocess, not multiprocessing | |
| from tqdm.auto import trange, tqdm | |
| from IPython.display import Markdown | |
| from vscodenb import set_vscode_theme | |
| from vscodenb import vscode_theme as theme |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment