Skip to content
Prev 282947 / 398500 Next

rbind()

Hi Fred,

It seems you don't have an rbind() problem, but a path problem. The
error you're getting means R can't find your file.

When specifying a relative path, as you do with "../RawData/File1.csv"
it's relative to your current working directory, not necessarily the
directory where your script is.

You can check that with getwd() and change it with setwd().

The safest thing to do is to specify an absolute path instead, such as
"/home/user/whatever/RawData/File1.csv"

but if you want to use relative paths, for instance for repeatability,
then just check your working directory carefully.

Sarah
On Fri, Jan 20, 2012 at 3:39 PM, Fred G <bayespokerguy at gmail.com> wrote: