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
from __future__ import annotations | |
import dataclasses as dc | |
import datetime | |
import inspect | |
from contextlib import contextmanager | |
from typing import TYPE_CHECKING, ClassVar, Literal, TypedDict, overload | |
import matplotlib as mpl | |
import matplotlib.dates as mdates |
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
from collections.abc import Iterable | |
from dataclasses import KW_ONLY, dataclass | |
from pathlib import Path | |
import polars as pl | |
import polars.selectors as cs | |
from polars._typing import ColumnWidthsDefinition | |
from xlsxwriter import Workbook | |
DESC_COLS = ('count', 'null_count', 'mean', 'std', 'min', '25%', '50%', '75%', 'max') |