You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While we can specify a parser per index or column name, we cannot specify a "default" parser for when we do not know how many columns the file will have or which names the columns will get.
which will read the CSV in such a way that colA will be parsed using the double parser and all other columns will be parsed as String. This would essentially disable the column type inference.
The text was updated successfully, but these errors were encountered:
While we can specify a parser per index or column name, we cannot specify a "default" parser for when we do not know how many columns the file will have or which names the columns will get.
It may be beneficial to be able to call
which will read the CSV in such a way that
colA
will be parsed using the double parser and all other columns will be parsed as String. This would essentially disable the column type inference.The text was updated successfully, but these errors were encountered: