Came across an issue when attempting to read a csv file into a Dataframe.
The code:
CSV.read("chuckle/random.csv", DataFrame)
The error:
ERROR: MethodError: Cannot `convert` an object of type Missing to an object of type String
Without setting the quoted= and using this as a csv file:
"Name","Address","CSZ"
"Rachel Smith","123 Main St","Oldtown, NY 12345"
"Herbert "Bert" Jones","564 Second St","Oldtown, NY 12345"
"Joe Brown","879 Fourth St","Oldtown, NY 12345"
Came across an issue when attempting to read a csv file into a Dataframe.
The code:
The error:
Without setting the quoted= and using this as a csv file: