Skip to content
Prev 305838 / 398506 Next

Importing a CSV file

Hi,

load() is for R's binary data files. You need to use read.csv(), as
you tried, but probably with the complete path.

A <- read.csv("C:\\Users\\Anthi\\Desktop\\R\\A.csv", header=TRUE)

Sarah
On Wed, Sep 19, 2012 at 4:54 AM, Anthi Oikonomou <anthi.oikon at gmail.com> wrote: