I have load a csv file to a Frame, deedle automatically infers that one column as decimal, whichi in fact should be int.
I have use the following line to do the casting into the correct type,
df?ColumnName <- df.GetColumn<int>("ColumnName")
I am wondering if this is the right way.