I'm having trouble importing a csv file which looks like this:
"password","score"
"p@sswd123456",0
"amdk62",0
"august89",0
"19760124",0
The scores are between 0 and 100. And the passwords can contain anything imaginable. I even found something like
""12345,./""
which is messing with R i assume. The command I am trying is:
mydata = read.csv(file="passwordlist.csv", header=TRUE, quote="", sep=",")
and I do not get an error message. When I try to read the file the second column is missing completely though.
How can I import both columns?