[R] r output as html or pdf without rstudio

2016-01-08 Thread Ragia .
dear group, is there a way to write my outputs to any kind of files ( the output contains text and graph) using R only without installing rstudio and using rmd  files. thanks in advance Ragia __ R-help@r-project.org

Re: [R] r output as html or pdf without rstudio

2016-01-08 Thread Greg Snow
Yes, you can use the knitr package directly (that is what Rstudio uses, but it is its own package). On Fri, Jan 8, 2016 at 1:16 PM, Ragia . wrote: > dear group, > is there a way to write my outputs to any kind of files ( the output contains > text and graph) using R only

[R] R output to Rich Text Format

2010-03-18 Thread Alex Bryant
Hi, Does anyone know of an existing package that will output to rtf? Something along the lines of pdf(ds,'file.pdf') or write.csv(ds,'file.csv'). Thanks, // // Alex Bryant // Software Developer // Integrated Clinical Systems, Inc. // 908-996-7208

Re: [R] R output to Rich Text Format

2010-03-18 Thread lith
Hi,  Does anyone know of an existing package that will output to rtf?   Something along the lines of pdf(ds,'file.pdf') or write.csv(ds,'file.csv'). You could use odfWeave and then use OpenOffice to generate an RTF file. Regards, Tom __

Re: [R] R Output and ArcGIS

2010-01-26 Thread Steve Murray
Dear all, Thanks for the replies so far. Just to emphasise, I'm not using Excel in any way. I have many many files to output, so it'd take considerable time to export from R, reprocess in Excel, then load into Arc! On a PC I'm able to go directly from R to ArcMap (9.3) without having to go

Re: [R] R Output and ArcGIS

2010-01-26 Thread Rainer M Krug
On Tue, Jan 26, 2010 at 11:42 AM, Steve Murray smurray...@hotmail.comwrote: Dear all, Thanks for the replies so far. Just to emphasise, I'm not using Excel in any way. I have many many files to output, so it'd take considerable time to export from R, reprocess in Excel, then load into

Re: [R] R Output and ArcGIS

2010-01-26 Thread Corey Sparks
Yes, R thinks the coordinates are characters, that needs to change. Also, alternatively you could use the write .dbf function in the foreign() library, ArcGis likes dbf files (just no long names) Corey - Corey Sparks, PhD Assistant Professor Department of Demography and Organization

Re: [R] R Output and ArcGIS

2010-01-26 Thread Steve Murray
Dear all, Just to let you know that thanks to your help, I've managed to solve it. For future reference, if anyone's interested (!), if you're having problems reading R-generated data from a Mac, into ArcMap on a PC, then ensure that you're using eol=\r\n in the write.table command and that

[R] R Output and ArcGIS

2010-01-25 Thread Steve Murray
Dear all, I've been using R on a Mac to process some data for export to ArcMap GIS (which only runs on Windows). ArcMap seems to require tab-delimited data (my data are in 3 columns), so I've been using the sep=\t argument. However, this resulted in strange end-of-line characters when

Re: [R] R Output and ArcGIS

2010-01-25 Thread milton ruser
Hi Steve, As I have no problem with this because I run windows, I prefere to use .txt files. But may be on your case you install xlsReadWrite (or WriteRead), because .xls file works fine for ArcGis. Remember not use complex (like having dots) or large names because some times you get error on

Re: [R] R Output and ArcGIS

2010-01-25 Thread Michael Denslow
Hi Steve, On Mon, Jan 25, 2010 at 12:54 PM, Steve Murray smurray...@hotmail.com wrote: Dear all, I've been using R on a Mac to process some data for export to ArcMap GIS (which only runs on Windows). ArcMap seems to require tab-delimited data (my data are in 3 columns), so I've been using

Re: [R] R Output and ArcGIS

2010-01-25 Thread Paul Hiemstra
Steve Murray wrote: Dear all, I've been using R on a Mac to process some data for export to ArcMap GIS (which only runs on Windows). ArcMap seems to require tab-delimited data (my data are in 3 columns), so I've been using the sep=\t argument. However, this resulted in strange end-of-line

Re: [R] R output

2009-12-15 Thread David Winsemius
The two other responses I saw suggested using write.table, which is fine if the object is a data.frame, but maybe not so great if the object comes from summary on a model or aov. My memory from years gone by of Excel's handling of material that had been copied to the clipboard from

Re: [R] R output

2009-12-15 Thread Manuel Jesús López Rodríguez
Thank you very much for your answers! They are very helpful! Best wishes! Manuel El 15/12/2009, a las 15:24, David Winsemius escribió: The two other responses I saw suggested using write.table, which is fine if the object is a data.frame, but maybe not so great if the object comes from

[R] R output

2009-12-14 Thread Manuel Jesús López Rodríguez
Dear all, I would like to ask you if exists some way of having the results of an R instruction (for instance, summary) in a table to copy it directly in Excel. Thank you very much in advance. Best wishes! Manuel __ R-help@r-project.org mailing list

Re: [R] R output

2009-12-14 Thread stephen sefick
?write.table() 2009/12/14 Manuel Jesús López Rodríguez mjlr1...@yahoo.es: Dear all, I would like to ask you if exists some way of having the results of an R instruction (for instance, summary) in a table to copy it directly in Excel. Thank you very much in advance. Best wishes! Manuel