Skip to content
Back to formatted view

Raw Message

Message-ID: <006301ca5c09$3c324930$b496db90$@com>
Date: 2009-11-02T22:10:05Z
From: Joe King
Subject: problems with read.csv
In-Reply-To: <000601ca5c00$ce174f70$6a45ee50$@yang@ualberta.ca>

I use 

indata = read.csv(file.choose(),header=TRUE)

of course you can specify your file.

Joe King
206-913-2912
jp at joepking.com
"Never throughout history has a man who lived a life of ease left a name
worth remembering." --Theodore Roosevelt


-----Original Message-----
From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On
Behalf Of Fang (Betty) Yang
Sent: Monday, November 02, 2009 1:10 PM
To: r-help at r-project.org
Subject: [R] problems with read.csv

Dear all,

 

I'd like to ask help on R code to get the same results as the following
Splus code:

 

 

>indata<-importData("/home/data_new.csv")

 

>indata[1:5,4]

[1] 0930 1601 1006 1032 1020

 

I tried the following R code:

 

> indata<-read.csv("/home/data_new.csv")

> indata[1:5,4]

[1]  930 1601 1006 1032 1020

 

I'd like the first one to be 0930, too.

 

Thanks in advance,

 

 

Betty

 

 

 

 


	[[alternative HTML version deleted]]

______________________________________________
R-help at r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.