Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

this one would work out fine if executed at build-time;
however for itables we need to execute it at read-time...

so this notebook has skip_execution: true in the metadata; you need to execute it in the browser:

# note that running under jlite, we could not read data/titanic.csv !

from string import ascii_uppercase as letters
import numpy as np
import pandas as pd

df = pd.DataFrame(np.random.randint(0, 1000, 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