acowley / Frames

Data frames for tabular data.
Other
297 stars 41 forks source link

tableTypes shadows Prelude.zip when "zip" column is in CSV #138

Closed MMesch closed 5 years ago

MMesch commented 5 years ago

I am loading a csv file with a column that is called zip with Frames in an ihaskell jupyter notebook. tableTypes then shadows Prelude.zip. How would you deal with this situation?

acowley commented 5 years ago

You can name the columns yourself, or use tablePrefix to specify a prefix for each generated name. Perhaps this example is close enough to your situation.

MMesch commented 5 years ago

Great, thank you!