read.table() says no such file or directory

I tried both
>> mydesign < read.table\(tablewang.txt, header=T, sep="\t" \)

and

>> mydesign < read.table\("/truba/home/ikryvoruchko/selma/tablewang.txt", header=T, sep="\t" \)

both ways it says no such file or directory. Why is this?
Note: i am using a server
Note: even getwd() did not work. but r environment works. How can this happen?

Try

mydesign < read.table(tablewang.txt, header=T, sep="\t" )

Those /'s should not be there.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.