Last active
December 2, 2024 10:31
-
-
Save cast42/7d46bf798a6618b7718b4a402c208936 to your computer and use it in GitHub Desktop.
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
# /// script | |
# requires-python = ">=3.12" | |
# dependencies = [ | |
# "pandas", | |
# "scrub" | |
# ] | |
# /// | |
import sys | |
from skrub import TableReport | |
import pandas as pd | |
if __name__ == "__main__": | |
pd.read_csv(sys.argv[1]) | |
TableReport(df, nrows=50) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment