Re: [R] Import data from Excel to R

2014-09-10 Thread Omar André Gonzáles Díaz
The best way is to save the file as CSV... after you can simply import it with this comand in R: read.csv(...) ... to know more about the read.csv comand use in R this: ?read.csv. There are other packages to import EXCEL FILES, but the simplest way, its importing this as CSV. 2014-09-09 18:03

Re: [R] Import data from Excel to R

2014-09-10 Thread John McKown
On Wed, Sep 10, 2014 at 3:51 AM, Omar André Gonzáles Díaz oma.gonza...@gmail.com wrote: The best way is to save the file as CSV... after you can simply import it with this comand in R: read.csv(...) ... to know more about the read.csv comand use in R this: ?read.csv. There are other

Re: [R] Import data from Excel to R

2014-09-10 Thread Jeff Newmiller
Although it may seem troublesome to export to csv, I have found that every direct access library for reading Excel files seems to come with some fiddly bits that confuse new users (and can show down an experienced user). For example, XLConnect can be a headache if your files are large because

Re: [R] Import data from Excel to R

2014-09-10 Thread Kevin Wright
Most of the time I would agree with csv being the best format. _If_ you are dealing with plain ASCII text. Having spent most of yesterday with an Excel spreadsheet containing Russian letters, I can say it is quite difficult to export the data to Unicode UTF-16 tab-delimited text and then

[R] Import data from Excel to R

2014-09-09 Thread JAWADI Fredj
Hi I am a New user of R. Please, how to import data from Excel to R? Thanks, Best regards, Fredj, [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting

Re: [R] Import data from Excel to R

2014-09-09 Thread Ista Zahn
Read the manual. http://cran.r-project.org/doc/manuals/r-release/R-data.html#Reading-Excel-spreadsheets Best, Ista On Sep 9, 2014 6:39 PM, JAWADI Fredj fredj.jaw...@france-bs.com wrote: Hi I am a New user of R. Please, how to import data from Excel to R? Thanks, Best regards, Fredj,

Re: [R] Import data from Excel to R

2014-09-09 Thread Peter Alspach
the most standard tasks (which I can share if you like) Peter Alspach -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of JAWADI Fredj Sent: Wednesday, 10 September 2014 8:48 a.m. To: r-help@R-project.org Subject: [R] Import data

Re: [R] Import data from Excel to R

2014-09-09 Thread Gabor Grothendieck
On Tue, Sep 9, 2014 at 4:48 PM, JAWADI Fredj fredj.jaw...@france-bs.com wrote: Hi I am a New user of R. Please, how to import data from Excel to R? Thanks, Best regards, Fredj, There are some ways listed here:

[R] import data (txt) separated by many blank spaces and lines with variable names that correspond to multiple observations.

2013-01-19 Thread mary
Hello, I have read other posts and in part I tried to solve my problem. I have a txt file but the values ​​as well as being separated by many blank spaces and lines eg.var_a var_b var_c 1 2 4 5

[R] Import Data from Excel

2012-08-15 Thread li li
Dear all, I want to import just part of an excel data file into R. I would like to have the data imported without rownames or colume names. I used read.delim(clipboard, header=F). Somehow even though I added the argument header=F, I still have the row names V1, V2, ..., Does anyone know

Re: [R] Import Data from Excel

2012-08-15 Thread Bert Gunter
Hannah: 1. First of all, they are column names, not row names. 2. Second, no, you cannot fix it. All columns in a data frame *must* have names, and if none are obtained from the import, the defaults you see will be provided. See ?data.frame for details of how columns are named. Columns of data

Re: [R] Import Data from Excel

2012-08-15 Thread David Winsemius
On Aug 15, 2012, at 2:04 PM, li li wrote: Dear all, I want to import just part of an excel data file into R. I would like to have the data imported without rownames or colume names. I used read.delim(clipboard, header=F). Somehow even though I added the argument header=F, I still have

Re: [R] Import Data from Excel

2012-08-15 Thread David Winsemius
On Aug 15, 2012, at 4:07 PM, David Winsemius wrote: On Aug 15, 2012, at 2:04 PM, li li wrote: Dear all, I want to import just part of an excel data file into R. I would like to have the data imported without rownames or colume names. I used read.delim(clipboard, header=F). Somehow even

Re: [R] Import Data from Excel

2012-08-15 Thread arun
hannah@gmail.com To: r-help r-help@r-project.org Cc: Sent: Wednesday, August 15, 2012 5:04 PM Subject: [R] Import Data from Excel Dear all,   I want to import just part of an excel data file into R.   I would like to have the data imported without rownames or colume names.   I used read.delim

[R] import data

2011-03-18 Thread AlexSmith
Hi, How do I read just the first line of a data file in R? (it does not contain labels) Thanks in advance, Alex. -- View this message in context: http://r.789695.n4.nabble.com/import-data-tp3387620p3387620.html Sent from the R help mailing list archive at Nabble.com.

Re: [R] import data

2011-03-18 Thread David Winsemius
On Mar 18, 2011, at 12:05 PM, AlexSmith wrote: Hi, How do I read just the first line of a data file in R? (it does not contain labels) read.table has an `nrow` argument and readLines has an `n` argument. Thanks in advance, Alex. -- View this message in context:

[R] Import data from dynamically changing spreadsheet

2010-08-02 Thread ShAkEs
Hello R List... I am seeking to continually make a call to an excel sheet and pull data from it. The data on the excel sheet keeps changing real time and I need to pull this data in R. Can someone please suggest me how to do the same. Thank you. -- View this message in context:

[R] import data from a csv file

2010-05-24 Thread li li
Hi all, I have some trouble reading data from a csv file. I used command read.delim(clipboard) to read in the data. aalpha.data - read.delim(clipboard) class(aalpha.data) [1] data.frame dim(aalpha.data) [1] 8 25 colnames(aalpha.data) [1] X V1 V2 V3 V4 V5 V6 V7 V8 V9 V10

Re: [R] import data from a csv file

2010-05-24 Thread Steve Lianoglou
Hi, On Mon, May 24, 2010 at 11:51 AM, li li hannah@gmail.com wrote: Hi all,   I have some trouble reading data from a csv file.   I used command read.delim(clipboard) to read in the data. aalpha.data - read.delim(clipboard) class(aalpha.data) [1] data.frame dim(aalpha.data) [1]  8

Re: [R] import data from a csv file

2010-05-24 Thread Peter Ehlers
On 2010-05-24 9:51, li li wrote: Hi all, I have some trouble reading data from a csv file. I used command read.delim(clipboard) to read in the data. aalpha.data- read.delim(clipboard) class(aalpha.data) [1] data.frame dim(aalpha.data) [1] 8 25 colnames(aalpha.data) [1] X V1

[R] problem with r import data

2009-08-06 Thread Inchallah Yarab
Good moorning, yesterday, i asked for how we can import data into R i found that it is necessary to make the file in csv format then use L- read.csv2(path of file) now i see that the dimension of my table importing into R is 1 colonne (i have realy 20) and (65) the number of all my lines in

Re: [R] problem with r import data

2009-08-06 Thread Gavin Simpson
On Thu, 2009-08-06 at 08:37 +, Inchallah Yarab wrote: Good moorning, yesterday, i asked for how we can import data into R i found that it is necessary to make the file in csv format then use L- read.csv2(path of file) Does read.csv() work instead? How is your csv file delimited? columns

Re: [R] problem with r import data

2009-08-06 Thread John Kane
...@yahoo.fr wrote: From: Inchallah Yarab inchallahya...@yahoo.fr Subject: [R] problem with r import data To: r-help@r-project.org Received: Thursday, August 6, 2009, 4:37 AM Good moorning, yesterday, i asked for how we can import data into R i found that it is necessary to make the file

[R] import data into R

2009-08-05 Thread Inchallah Yarab
Thank you Gabor Grothendieck for your answer !! i have charge the pachage but now i have this massage  read.table(c:/TOTAL.xls,h=T) [1] ÐÏ.à.. 0 rows (or 0-length row.names) Warning messages: 1: In read.table(c:/TOTAL.xls, h = T) :   incomplete final line found by readTableHeader on

Re: [R] import data into R

2009-08-05 Thread Ronggui Huang
You can not import xls file by read.table. You may save xls as csv file, and import it by read.csv. 2009/8/6 Inchallah Yarab inchallahya...@yahoo.fr: Thank you Gabor Grothendieck for your answer !! i have charge the pachage but now i have this massage  read.table(c:/TOTAL.xls,h=T) [1]

[R] import DATA

2009-08-05 Thread Inchallah Yarab
hi !! it is me again sorry but until now i don't found  how i can import data form excel to R? i have this message error read.table(c:/TOTAL.xls) V1 1 ÐÏ\021ࡱ Warning message: In read.table(c:/TOTAL.xls) :   incomplete final line found by readTableHeader on 'c:/TOTAL.xls' thank you

Re: [R] import data into R

2009-08-05 Thread Gabor Grothendieck
read.table is used for text data, not Excel data. Suggest you re-read the cited link. On Wed, Aug 5, 2009 at 12:16 PM, Inchallah Yarabinchallahya...@yahoo.fr wrote: Thank you Gabor Grothendieck for your answer !! i have charge the pachage but now i have this massage  

Re: [R] import data into R

2009-08-05 Thread Jun Shen
Alternatively, you can download and install the package gdata. The function read.xls in it can read Excel sheets directly from .xls files. Basically the function is doing the csv conversion for you. See ?read.xls for details. On Wed, Aug 5, 2009 at 11:16 AM, Inchallah Yarab