<t>You put the double-quote at the wrong place. write:read.csv(file="mycsv.csv",head=F,sep=",")## not thisread.csv("file=mycsv.csv",head=F,sep=",")In this case R understands that your directory name is "file=mycsv.csv" (as it is the 1st argument in the read.csv() function), ofcourse it is not there,...