Message-ID: <Pine.LNX.4.63a.0510311038000.24405@homer22.u.washington.edu>
Date: 2005-10-31T18:39:10Z
From: Thomas Lumley
Subject: Import help (neophyte)
In-Reply-To: <s3660eab.026@TMIA1.AUBURN.EDU>
On Mon, 31 Oct 2005, Jeffrey Stratford wrote:
> Hi, I have no experience with R and I'm finding the manuals a bit obtuse
> and written as if I already understood R.
>
> I'm trying to import a csv file from a floppy and it's not working. The
> code I'm using is
>
> read.table("F:\GEORGIA\species_richness\SR_use.csv", sep=",", header =
> TRUE, row.names = 1)
>
> I'm assuming that this command is case sensitive so everything matches.
> Is there something I'm missing?
Yes. Your file path should be
specified as "F:/GEORGIA/species_richness/SR_use.csv"
[or "F:\\GEORGIA\\species_richness\\SR_use.csv"]
-thomas