Skip to content

Instantly share code, notes, and snippets.

View prockenschaub's full-sized avatar

Patrick Rockenschaub prockenschaub

View GitHub Profile
@prockenschaub
prockenschaub / timeseries_with_awkward_and_pandas.py
Last active July 31, 2020 07:36
Awkward-Pandas timeseries example
import numpy as np
import pandas as pd
import awkward1 as awk
# TODO: add typing
from typing import Type
def is_iloc_key(key):
if isinstance(key, (int, slice)):