Hi everybody,
Brand new to Julia, so please forgive the ignorance. I’m trying to do something simple, i.e. import a local csv file, and am running into problems:
using DataFrames;
data = DataFrames.readtable(“C:\TempPath\test.csv”)
SystemError: opening file C:\TempPath\test.csv: No such file or directory
in #systemerror#51 at ./error.jl:34 [inlined]
in systemerror(::String, ::Bool) at ./error.jl:34
in open(::String, ::Bool, ::Bool, ::Bool, ::Bool, ::Bool) at ./iostream.jl:89
in open(::String, ::String) at ./iostream.jl:101
in #readtable#79(::Bool, ::Char, ::Array{Char,1}, ::Char, ::Array{String,1}, ::Array{String,1}, ::Array{String,1}, ::Bool, ::Int64, ::Array{Symbol,1}, ::Array{Any,1}, ::Bool, ::Char, ::Bool, ::Int64, ::Array{Int64,1}, ::Bool, ::Symbol, ::Bool, ::Bool, ::DataFrames.#readtable, ::String) at /opt/julia_packages/.julia/v0.5/DataFrames/src/dataframe/io.jl:941
in readtable(::String) at /opt/julia_packages/.julia/v0.5/DataFrames/src/dataframe/io.jl:930
I have been trying to follow along with blog post (i.e. Tabular Data I/O in Julia | R-bloggers), but can’t figure out why I can’t get past the first step. I’ve tried Python literals, double \s, /s, all to no avail. I know that there must be a simple step I am overlooking…
Thank you in advance, and looking forward to your thoughts.