Need help with DataFrame. I am reading a csv file ...
# getting-started
d
Need help with DataFrame. I am reading a csv file using DataFrame.readCSV(file) but it’s messing up large number and converting them into scientific notation… how can I avoid this?
y
You need to hint that the type of that column should be
BigDecimal
or
BigInteger
or something like that with enough precision
d
ok. Will try that. Thanks