read csv in r, in which one of the column has english sentences and can have "

StackOverflow https://stackoverflow.com/questions/23631281

  •  21-07-2023
  •  | 
  •  

Frage

I have a csv with sep='\t'. When I try to read the csv using the following code, not all the rows are read.

data <- read.csv("raw.txt", sep='\t', header=T)

Most likely the reason being, the data has " (quote) in its text. How to read such a file?

Format of file is:

text           freq
he is "Sam"    45
...
War es hilfreich?

Lösung

Try this:

data <- read.csv("raw.txt", sep='\t', header=T,quote="")
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top