Skip to content

Instantly share code, notes, and snippets.

@linkerzx
Created December 1, 2021 22:47
Show Gist options
  • Save linkerzx/c74a925aa01e461a81a200e931bc1e4d to your computer and use it in GitHub Desktop.
Save linkerzx/c74a925aa01e461a81a200e931bc1e4d 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