Skip to content
Prev 79975 / 398502 Next

Import help (neophyte)

On 10/31/2005 1:31 PM, Jeffrey Stratford wrote:
In R (as in C) the backslash is an escape character.  To have a 
backslash appear in your pathname, you need to double it.

Alternatively, just use a forward slash:

  read.table("F:/GEORGIA/species_richness/SR_use.csv", sep=",", header =
  TRUE, row.names = 1)

Duncan Murdoch