> Then, can the data type of a column value be infered by > nim-pandas-like-thing? I suspected that we have to pre-define the dtype of > every column before we can read the data.
Data type can be inferred and Datamancer does that, for another example, see: <https://pietroppeter.github.io/nimib/penguins.html> where some columns are inferred as numeric values (int, float), some as string, some as generic "object" (which is a variant type that can contain any of the above and also bool). **note** : the example predate the independent birth of Datamancer, which before being its own package, it started inside ggplotnim.