Skip to content

Instantly share code, notes, and snippets.

@cast42
Last active December 2, 2024 10:31
Show Gist options
  • Save cast42/7d46bf798a6618b7718b4a402c208936 to your computer and use it in GitHub Desktop.
Save cast42/7d46bf798a6618b7718b4a402c208936 to your computer and use it in GitHub Desktop.
# /// 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