[R] import data

2007-06-30 Thread eric zoukekang
Hello! I wonder if you might help me with informations about how to import data with a 2.4.1 R version without the menu Import data. Best regards. Eric Duplex ZOUKEKANG Ingénieur Zootechnicien Montpellier SupAgro Master2 AAA-PARC tel : +33(0)661432340 [EMAIL PROTECTED]

Re: [R] import data

2007-06-30 Thread Christophe Pallier
ha On 6/30/07, eric zoukekang [EMAIL PROTECTED] wrote: Hello! I wonder if you might help me with informations about how to import data with a 2.4.1 R version without the menu Import data. Best regards. Eric Duplex ZOUKEKANG Ingénieur Zootechnicien Montpellier SupAgro Master2 AAA-PARC

Re: [R] import data

2007-06-30 Thread Christophe Pallier
Oops, sorry for the previous empty reply. You do not tell us which Operating System you are using, so I assume it must be Windows... You should check the R import/export Data available from the Help/Manuals menu (in French: Aide/Manuels...) Christophe On 6/30/07, Christophe Pallier [EMAIL

Re: [R] import data

2007-06-30 Thread Roland Rau
Hi Eric, eric zoukekang wrote: Hello! I wonder if you might help me with informations about how to import data with a 2.4.1 R version without the menu Import data. Best regards. the best information about importing data in R is contained in the manual R Data Import/Export which should be

[R] Import data from Access

2007-05-31 Thread livia
Hi, I want to import some data from Access and I am using the following codes: testdb - file.path(c/../db1) channel - odbcConnect(testdb) sqlFetch(channel,tbl,colnames = TRUE, rownames = FALSE) It comes out the error message: 1: [RODBC] ERROR: state IM002, code 0, message [Microsoft][ODBC

Re: [R] Import data from Access

2007-05-31 Thread Greg Snow
, 2007 9:55 AM To: r-help@stat.math.ethz.ch Subject: [R] Import data from Access Hi, I want to import some data from Access and I am using the following codes: testdb - file.path(c/../db1) channel - odbcConnect(testdb) sqlFetch(channel,tbl,colnames = TRUE, rownames = FALSE) It comes

Re: [R] Import data from Access

2007-05-31 Thread Wensui Liu
library(RODBC); mdbConnect - odbcConnectAccess(C:\\db.mdb); data - sqlFetch(mdbConnect, tblData); odbcClose(mdbConnect); On 5/31/07, livia [EMAIL PROTECTED] wrote: Hi, I want to import some data from Access and I am using the following codes: testdb - file.path(c/../db1) channel -

Re: [R] Can R import data from firebird relational database

2004-10-30 Thread Prof Brian Ripley
On Sat, 30 Oct 2004, Unung Istopo Hartanto wrote: Can R import data or process data from firebird relational database (firebird.sourceforge.net). Cause i still using it on linux and i'll process my data using R. If it has a suitable interface. A quick look suggests it has a Linux ODBC

[R] Can R import data from firebird relational database

2004-10-29 Thread Unung Istopo Hartanto
Dear Users, Can R import data or process data from firebird relational database (firebird.sourceforge.net). Cause i still using it on linux and i'll process my data using R. Thanks all, regards, Unung __ [EMAIL PROTECTED] mailing list https

[R] import data from splus

2004-08-09 Thread Mehrez Samaali
Dear Sir, I am using R for the first time and I am looking for a function or a command that allows to import Splus data into R. I have already heard about functions called readSdata and readSfiles in the Rstreams package. I did not find the last new version of this package on the CRAN and its

Re: [R] import data from splus

2004-08-09 Thread Prof Brian Ripley
Please read the `R Data Import/Export' Manual that ships with R. You are looking for package foreign. On Mon, 9 Aug 2004, Mehrez Samaali wrote: I am using R for the first time and I am looking for a function or a command that allows to import Splus data into R. I have already heard about

RE: [R] import data troubles

2003-11-06 Thread Gabor Grothendieck
--- On Thu 11/06, STOLIAROFF VINCENT [EMAIL PROTECTED] wrote: I'd like to know if there is a function for importing datas from excel file? There are a number of choices: - select range in Excel, press ctrl-c and read in the data from the clipboard using read.table(clipboard,header=T) -

RE: [R] import data troubles

2003-11-06 Thread Gabor Grothendieck
--- On Thu 11/06, STOLIAROFF VINCENT [EMAIL PROTECTED] wrote: I'd like to know if there is a function for importing datas from excel file? There are a number of choices: - select range in Excel, press ctrl-c and read in the data from the clipboard using read.table(clipboard,header=T) -