import pandas as pd
from adtk.visualization import plot
df = pd.read_csv('mydf.csv')
plot(df)
OSError: 'seaborn-whitegrid' is not a valid package style, path of style file, URL of style file, or library style name (library styles are listed in style.available)
you can
import seaborn
plt.style.available # look up available format
then replace
plt.style.use("seaborn-whitegrid")
in _visualization.py into
plt.style.use("seaborn-v0_8-whitegrid")
"
That's all right.