Since the addition of formatters, columns are implicitly typed. However, this may lead to implementation problems like those in series_from_csv, where the formatter-related code looks like a hack.
Consider explicitly typing the columns instead. The exact formatter, if not provided, would then be inferred from the type and possibly the data (i.e., to auto-detect the precision for floating-point numbers)
Since the addition of formatters, columns are implicitly typed. However, this may lead to implementation problems like those in
series_from_csv
, where the formatter-related code looks like a hack.Consider explicitly typing the columns instead. The exact formatter, if not provided, would then be inferred from the type and possibly the data (i.e., to auto-detect the precision for floating-point numbers)