On Wednesday, February 25, 2015 at 12:37:35 PM UTC-5, Brandon Booth wrote: > > I'm trying to read a csv file from a thumb drive using IJulia and keep > getting an error. > > My code reads: > > params = readcsv("/media/brandon/ED2F-0842/Parameters.csv",',') >
You don't pass the delimiter to readcsv, you only pass the filename. If you want to pass the delimiter you use readdlm. (See the help/manual for readcsv and readdlm.)