Displaying 20 results from an estimated 9000 matches similar to: "Transferring R results to word prosessors"
2008 Oct 24
18
Transferring results from R to MS Word
R-users
At the moment I am teaching a course on the use of R for data analysis.
Part of course requirements involves the transfer of results from R to
something that resembles the APA (American Psychological Associations)
type tables to MS Word. Until now I have used the HTML function in the
R2HTML library, with a call like this:
HTML(summary(model1), file("clipboard",
2006 Feb 09
11
Tranferring R results to word prosessors
I have just started looking at R, and are getting more and more irritated
at myself for not having done that before.
However, one of the things I have not found in the documentation is some
way of preparing output from R for convenient formatting into something
like MS Word. An example: If you use summary(lm(....)) you get nice
output. However, if you try to paste that output into the word
2006 Oct 13
2
bug: Editing function formals deletes the environment
First, here's the specific bug I have. Later I'll say why I care.
> ls(zappo)
Error in try(name) : object "zappo" not found
# good.
> f = function(zappo) { function(y) zappo + y }
> g = f(1)
> g(1)
[1] 2
> formals(g)
$y
> formals(g)$y
> formals(g)$y = 2
> g
function (y = 2)
zappo + y
> g(1)
Error in g(1) : object "zappo" not found
2007 Nov 05
1
R2HTML package and Open Office: text only pasted
I am trying to use R2HTML (just downloaded from CRAN) to paste R (2.6.0)
results output via the clipboard to OpenOffice Writer and Calc
(version 2.3on WinXPPro)
Pasting into Excel gives a formatted table of results (as expected), but
pasting into Calc simply pastes the HTML code. Trying paste special only
gives an option to paste unformatted text.
Equally, with Writer, in the past when I tried
2008 Feb 15
12
Transfer Crosstable to Word-Document
# Dear list,
# I am an R-beginner and
# spent the last days looking for a method to insert tables produced
# with R into a word document. I thought about SPPS: copy a table from
# an SPO-file and paste it into a word document
# (if needed do some formatting with that table).
# Annother idea was, to produce a TEX-file,
# insert it and make it a word-table.
# I found the following libraries, which
2006 Jun 25
2
R Reporting - PDF/HTML mature presentation quality package?
I heartily second Phillipe's response. I just started a new job and the
first thing required was a neat stats report for a dataset. I thought I
would give R2HTML a try and about 5 minutes after downloading it, I was
looking at the first draft of the report. I did have to do a bit of
hacking on the graphics, but it was easy and I can now present the
report first thing in the morning. Had I
2005 Aug 19
1
SciViews-R v8.7 and Rcmdr v1.0-2 (PR#8079)
Full_Name: Hamit AYDIN
Version: R v2.1.1
OS: winxp
Submission from: (NULL) (194.27.40.230)
When I try to run sciviews the consol opens but when I try to import text,
spss... it tries to load rmcdr pakage gives me "the pakage can not be find inthe
Package or bundle 'Rcmdr' was not found in C:\PROGRA~1\R\rw2011\library. Would
you like to install it now?" I know the pakage in
2006 May 04
1
a clipboard problem while using R2HTML
I followed the examples of previous posts about R2HTML to practice
exporting a data to a clipboard, but the result is not as smooth as I
had expected:
library(R2HTML)
data(iris)
HTML(iris, file("clipboard","w"), append=FALSE)
I got an error message:
> HTML(iris, file("clipboard","w"), append=FALSE)
Error in file("clipboard", "w")
2007 May 03
2
Install SciView under Windows Vista
Hello-
I have been trying to install SciView under Windows Vista (Home Premium
version,
32 bit OS, Intel Core Duo 2.13GHz, 2Gig RAM).
I am getting an error, apparently related to the R2HTML package (version
1.54)
as you will see in the R information below my signature.
I have tried to email directly to support@sciviews.org for support but have
had my message returned as undeliverable.
Your help
2007 Jun 18
1
Loading problem with R2HTML package
I have downloaded latest version of R2HTML (v1.54) for 64-bit windows PC. My
R version 2.5.0. My problem arises when i want to install SciViews-R which
need R2HTML package.
> library(R2HTML)
Error in `parent.env<-`(`*tmp*`, value = NULL) :
use of NULL environment is defunct
Error: package/namespace load failed for 'R2HTML'
Any remedy ?
Regards
--
View this message in
2004 Apr 11
9
pasting results into Word/Excel
Is there some clever way of pasting results from R into Excel or Word, as
tab limited format so they are easy to turn into a formatted table.
Or is there some other way of doing this to avoid the time spent
reformatting the output for presentation.
If different, I am also interested in an answer to the same question but
using S-Plus.
Many thanks,
Graham
2004 Jan 28
9
How to generate a report with graphics and tables?
Hello R-Users,
I have some data sets which change on a daily bases. So far I have
imported these sets into R, done all my evaluations resulting in a
couple of plots, charts and tables of numbers which I copy&pasted via
clipboard into Powerpoint.
The procedure is always the same and I wonder, whether there is no
easier way for doing so. Is there some type of "report generator"
2004 Oct 16
3
Lazy loading... advices
Hello,
I am looking for more information about lazy loading introduced in R 2.0.0.
Doing
?lazyLoad
I got some and there is a 'see also' section that points to
'makeLazyLoading'... But I cannot reach this page.
My problem is: I recompiled a library that uses a lot of functions from
other libraries (of course I can give details if needed). I load it in my
computer: library(svGUI),
2005 Nov 30
1
SciViews-R_0.8-9 Console problem
Dear R users,
I successfully installed SciViews the other day. However, when I try to
run it now, the command/script window does not appear. Strange. Well,
actually I see a tendency to a script window (in the lower part of the
sciview window where it is suppose to be) during start up, but when the
program is entirely open, the script window is gone.
I have tried to uninstall and reinstall
2007 Jan 26
1
CGIwithR and visible output of 'invisible(capture.output(library(...)))'
Dear alltogether,
I want to use CGIwithR in conjunction with R2HTML.
A small example called 'test.R':
#####
#! /usr/bin/R
invisible(capture.output(library(R2HTML)))
HTML(summary(as.numeric(scanText(formData$numbers))), file=stdout())
#####
The script gets its input via 'CGIwithR.cgi' and contains the variable
"numbers."
The 'HTML' output (-> summary() in
2008 Oct 26
1
Transferring results from R to MS Word2
Tom:
Supposse your Excel file is named "myExcelFile"
Open myExcelFile and SaveAs "myExcelFile.csv" or "myExcelFile.txt"
Then go to the RConsole and type:
#Option # 1
mydata <- read.csv("PathTomyExcelFile.csv",header=T)
mydata
# You should be able to see your dataset in R
# Option # 2
# If you saved your Excel file as text then you would do:
mydata
2007 Jul 11
5
elementary statistics with R (rkward?)
Hi, I am trying to learn some basic statistics stuff but I cannot find any
elementary statistics exercises using R language. Using RKward would be even
better...
I need that in analysing sociological data, obtained through questionnairres -
findind corelations between variables, relations between different types of
data, etc.
Could anyone recommend simple tutorials/exercises, available on www
2003 Jan 10
3
manipulate all files in folder
Im just attempt writing a function
which import manipulate and export spss data, my
basic problem when i use the cat command
that their is a space to much ?
Perhaps here exist a better solution ?
cat(paste(path),paste(file))
c:/Project/Allbus/ aprioriTotal.sav
test <- function(dir) {
for (i in 1:length(list.files))
path <- "c:/Project/Allbus/"
file <- list.files()[4]
tmpdata
2006 May 02
1
Rcmdr problem - SciViews R
Hi,
I am getting following error messages while using SciViews R. It displays a message saying: Package or Bundle Rcmdr was not found in C:\Software\R-22.1.1\Library would you like to install now?. However the Rcmdr package is there in the library. I reinstalled Rcmdr but still gives me same error message every time I try to use one of the GUI functions. Any pointers would be of great