enso-org / dataframes

A library for working with tabular data in Luna.
https://luna-lang.org
MIT License
6 stars 5 forks source link

Make it possible to convert column type #82

Open mikusp opened 6 years ago

mikusp commented 6 years ago

There is no simple way to change column type after it was read. I wanted to convert String column into Int column by calling _.toInt, but all my attempts failed.

Kesanov commented 6 years ago

Something like df . map 'column name' .toInt?