Are you sure you've got comma separated values then? I was of the
understanding that "readcsv" is just "readdlm" with the delimiter set to a
comma. If you're trying to use a different delimiter, "readdlm" is what you
should use.
On Wednesday, February 25, 2015 at 9:37:35 AM UTC-8, 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",',')
>
> I get the following error:
>
> 'readcsv' has no method matching readcsv(::ASCIIString, ::Char)
> while loading In[10], in expression starting on line 1
>
> Any suggestions on how to get around this? It works if I leave off the
> delimiter, but then I get one long list of values.
>
> Thanks.
>
> Brandon
>