Skip to content

Instantly share code, notes, and snippets.

@linkerzx
Last active December 1, 2021 22:46
Show Gist options
  • Save linkerzx/94ef0a9a2d70009eb86cef232f1d5aab to your computer and use it in GitHub Desktop.
Save linkerzx/94ef0a9a2d70009eb86cef232f1d5aab to your computer and use it in GitHub Desktop.
import nimpy
let pd = pyImport("pandas")
let df = pd.DataFrame([[1,2,3]], columns=["cola","colb","colc"])
echo df
let dfa = pd.read_parquet("somefile.parquet")
echo dfa.shape
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment