3

I have a problem with my database. I want to enter the database in R, but appears this message "error unexpected string constant".

I wrote this command: read.csv(prova1,sep";", header=20)

What's the problem? I suppose something in my database, but I don't know what it is. Thank you for reply

Jan Hančič
  • 53,269
  • 16
  • 95
  • 99

1 Answers1

6

Like what was commented, you made a syntactic error, i.e. you forgot the = between sep and ;.

Paul Hiemstra
  • 59,984
  • 12
  • 142
  • 149