Skip to article frontmatterSkip to article content

for this one it seems we’re better off executing at build-time

from string import ascii_uppercase as letters

import numpy as np
import pandas as pd

df = pd.DataFrame(np.random.randint(0, 100, size=(100, len(letters))), columns=list(letters))
df

same DataFrame with no scroll

with scrolled output (:scrolled: true) - does not change anything

df

itables ?

%pip install itables
import itables
itables.init_notebook_mode()
df