Skip to content

Instantly share code, notes, and snippets.

@robdmc
Created January 11, 2022 15:46
Show Gist options
  • Save robdmc/d5f6a0a73d6434818316421d84337290 to your computer and use it in GitHub Desktop.
Save robdmc/d5f6a0a73d6434818316421d84337290 to your computer and use it in GitHub Desktop.
Start visidata from python interpreter
import pandas as pd
from visidata import vd
df = pd.DataFrame({'a': [1, 2, 3], 'b':[4, 5, 6]})
vd.view_pandas(df)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment