Displaying 4 results from an estimated 4 matches for "fromexcel".
2008 Apr 19
7
Re ad From EXCEL
Hello!!!
I have been read a much about as read data from Excel File, but I haven?t
found the necesary information to read the data.
Now, I can create a channel : channel <- odbcConnectExcel("file.xls") but I
don?t know as read the data??
I hope that you could help me. Thank you very much.
--
View this message in context:
2012 Jan 10
3
unir en .dbf luego de aplicar read.xls a varios archivos
Estimados:
Tengo un directorio con varios archivos Excel quiero importarlos todos
y grabarlos en un único archivo .dbf.
Haciendolo uno por uno lo logro de la siguiente manera (solo tomo 2 archivos):
archivos <- list.files(pattern = 'xls')
a1 <- read.xls(archivos[1],
perl="C:\\strawberry\\perl\\bin\\perl.exe",skip=12,dec=",",header=F,as.is=T)
a2 <-
2009 Jul 29
3
Transporting data in different R windows
Hi,
I am working with multiple R-windows opened and would like to transport some
variables from one to another. Is there any direct way to do this without
saving them in hard-disk?
Thanks
--
View this message in context: http://www.nabble.com/Transporting-data-in-different-R-windows-tp24719077p24719077.html
Sent from the R help mailing list archive at Nabble.com.
2010 Aug 20
0
Resumen de R-help-es, Vol 18, Envío 8
...iguiente funcion, donde "yourfile" es
>> el nombre del archivo de Excel, incluyendo la ruta., e.g. "C:/datos/aa.xls"
>> y "worksheet" corresponde a la hoja donde tienes la informacion, e.g.
>> "Hoja1".
>>
>> # From Excel
>> FromExcel <- function(yourfile,worksheet){
>> require(RODBC)
>> channel <- odbcConnectExcel(yourfile)
>> mydata <- sqlFetch(channel, worksheet)
>> odbcClose(channel)
>> attach(mydata)
>> mydata
>> }
>>
>> install.packaes("RODBC")...