Reading a csv file with embedded quotes into R
问题 I have to work with a .csv file that comes like this: "IDEA ID,""IDEA TITLE"",""VOTE VALUE""" "56144,""Net Present Value PLUS (NPV+)"",1" "56144,""Net Present Value PLUS (NPV+)"",1" If I use read.csv, I obtain a data frame with one variable. What I need is a data frame with three columns, where columns are separated by commas. How can I handle the quotes at the beginning of the line and the end of the line? 回答1: I don't think there's going to be an easy way to do this without stripping the