Oh maybe you dont use a comma (,) as delimiter, but you use a white space? in that case do
df = readtable("myFile.csv", header=false, separator=' ') I think dataframes tries to geuss your delimiter from the filename. so when you have a .csv file it will look for a comma as separator. On Tuesday, December 8, 2015 at 4:56:19 PM UTC-5, Andre Bieler wrote: > > I cannot reproduce this. > Can you provide your data file? > > I attached a .cvs file and a .jl file to > read out the data. Seems all good to me > and the values are stored as Float64. > > > > > > On Tuesday, December 8, 2015 at 7:24:26 AM UTC-5, Vishnu Raj wrote: >> >> Hi, >> I have a CSV file with values represented as 2.345 and 1.23e2 (say) and >> no header >> When I try readtable( "file", header=false ), I'm getting all the cell >> values as "UTF8String". How can I properly read it as Float64?? >> >> - vish >> >