similar to: Antw: odfWeave Error

Displaying 20 results from an estimated 100 matches similar to: "Antw: odfWeave Error"

2010 Jan 06
0
Antw: Code flowchart generator for R ?
You may want to look into RAnalyticFlow: http://www.ef-prime.com/products/ranalyticflow_en/index.html Regards, Frank ******************************************************** Dr.med. F. Bloos, Ph.D./U.W.O. Oberarzt Klinik f. Anästhesiologie und Intensivtherapie Klinikum der Friedrich-Schiller-Universität Jena Erlanger Allee 101 07747 Jena GERMANY Tel: +49 - 3641-932 32 83; Fax: +49 -
2010 Mar 03
1
: Three most useful R package
ad 1) ggplot2, Hmisc, RODBC ad 2) A package to produce high quality tables with summary statistics for publications in scientific journals. Regards, Frank >>> Ralf B <ralf.bierig@gmail.com> 02.03.2010 21:13 >>> Hi R-fans, I would like put out a question to all R users on this list and hope it will create some feedback and discussion. 1) What are your 3 most useful R
2010 Mar 17
3
odfWeave Error
Hi All, This is probably basic, but I am just starting with R and very interested in learning how to automate my reports. I am just learning about Sweave and LaTex. I am following an example from online and am getting the following error: ....."Error unizipping file....unzip not found". I am not a programmer by any stretch, but I realize that the package is either not recognizing
2009 Dec 12
1
Antw: Export R output to Word/RTF?
I am using SWord from statconn: http://rcom.univie.ac.at/download.html It allows you to put r-commands into Word (similar to odfWeave). Output is directed to Word including figures and tables. It is still a beta-version but works fine. Frank Bloos >>> Wenjie Lee <wenjieleemaillist@gmail.com> 12.12.2009 00:28 >>> Hi R Experts, I'm aware of pdf(), jpeg(),...
2009 Jul 23
2
Antw: How to extract the upper xlim and ylim of my plot?
You may want to use the function corner.label from the plotrix-package. Frank >>> Mark Na <mtb954@gmail.com> 21.07.2009 23:03 >>> Dear R-helpers, I wish to place some text in a plot, at approx 10% of my upper xlim and approx 90% of my upper ylim, i.e. > plot(log(all$SR,10)~log(all$AREA,10)) > text(.1*max(xlim),.9*max(ylim),"text to be placed") (I know
2010 Mar 17
0
odfWeave: odt-file damaged
Dear all, I'm resurrecting this old post (about 6 monts old, reproduced thereafter) because I have struggled against the same problem and found a solution so that I found it was worth posting for the record. The simple fix when you want to use odfWeave with 7-ZIP as a compressing/decompressing utility under windows is to use the 'x' instead of the 'e' option so as to preserve
2009 Jul 06
1
odfWeave: odt-file damaged
Dear all, I am doing my first steps with odfWeave. After running the r code (see below), I am trying to open the ODF-document with open office, but I am getting the error message: "The file is damaged, but it can be repaired". If I confirm the question and repair the file with open office, I can open it with the desired output, which seems to be fine. My system: R Version 2.9.1
2011 Dec 17
1
odfWeave error
I am new to using odfWeave but I have encountered a problem running both the example in the help file as well as another file.? I am not sure how to correct the error. First example: library(odfWeave) filein <- 'c:\\my documents\\example01_in.odt' fileout <- 'c:\\my documents\\example01.odt' odfWeave(filein, fileout, control = odfWeaveControl(cleanup = T)) error:
2011 Dec 16
1
odfWeave
I am new to using odfWeave but I have encountered a problem running both the example in the help file as well as another file. I am not sure how to correct the error. First example: library(odfWeave) filein <- 'c:\\my documents\\example01_in.odt' fileout <- 'c:\\my documents\\example01.odt' odfWeave(filein, fileout, control = odfWeaveControl(cleanup = T)) error:
2010 Aug 25
1
several odfWeave questions
[Sending both to the maintainer and to R-help, in case anyone else has answers ...] I've looked in odfWeave documentation, vignette, and poked around on the web some, and haven't found answers yet. 1a. am I right in believing that odfWeave does not respect the 'keep.source' option? Am I missing something obvious? 1b. is there a way to set global options analogous to
2011 Jan 23
1
odfWeave Error unzipping file in Win 7
Hey guys, I?m just getting started with R (version 2.12.0) and odfWeave and kinda stumble from one problem to the next, the current one is the following: trying to use odfWeave: > odfctrl <- odfWeaveControl( + zipCmd = c("C:/Program Files/unz552dN/VBunzip.exe $$file$$ .", + "C:/Program Files/unz552dN/VBunzip.exe $$file$$")) > >
2006 Jul 29
0
Version 0.4.3 of odfWeave
A new version of odfWeave is on CRAN. Changes include: - handling of locales. Errors were being produced when locales were set to anything but "C". The fix changes the locale to "C" and changes back to the original locale when the user's code is executed. - a bug fix for default plot device units (to prevent bitmap graphics from being 480x480 inches on non-Windows
2006 Jul 29
0
Version 0.4.3 of odfWeave
A new version of odfWeave is on CRAN. Changes include: - handling of locales. Errors were being produced when locales were set to anything but "C". The fix changes the locale to "C" and changes back to the original locale when the user's code is executed. - a bug fix for default plot device units (to prevent bitmap graphics from being 480x480 inches on non-Windows
2006 Sep 06
0
odfWeave Version 0.4.4
Version 0.4.4 of odfWeave is available from CRAN. A Windows binary should be available shortly. This version requires base R version 2.3.1 or greater. Changes from the last version include - Non-English character sets are handled better. For example, Chinese characters can be included in R code. See the file "testCases.odt" in the examples directory for an example - Image
2006 Sep 06
0
odfWeave Version 0.4.4
Version 0.4.4 of odfWeave is available from CRAN. A Windows binary should be available shortly. This version requires base R version 2.3.1 or greater. Changes from the last version include - Non-English character sets are handled better. For example, Chinese characters can be included in R code. See the file "testCases.odt" in the examples directory for an example - Image
2009 Nov 27
6
Learning R - View datasets
Hi All, I am making a serious effort to try to learn R, but one hurdle I am facing is that I need to "see" the data as I walk through the examples in the packages. For instance, many examples on the web start by a command like data("wines"). How can I actually view what the dataset looks like prior to transformations and analysis? I have tried to use edit() , print, and
2009 Mar 24
3
mmonit - Permission denied errot
Greetings, I just downloaded the mmonit from mmonit.com site on my CentOS box untarred-unizipped it. As per the documentation, I dutifully typed ./bin/mmonit and it is refusing to run. I am running this as root and SELinux is disabled. running it with strace spews the following (in entireity): [begin] # strace ./bin/mmonit execve("./bin/mmonit", ["./bin/mmonit"], [/* 28
2007 Nov 17
1
odf and unzip: unzip not found
hi list members I am trying to use odfWeave with R 2.5.1 on Windows XP. however when running e.g. odfWeave(demoFile, outputFile) I get: Error in odfWeave(demoFile, outputFile) : Error unzipping file In addition: Warning message: unzip not found in: system(zipCmd[2], invisible = TRUE) presumably my zip and unzip are not set up correctly but I dont know how to do that. I installed zip and
2006 Jul 25
2
Sweave and tth
I tried odfWeave to create an OpenOffice file and found that it exhausted the memory of my large linux machine and took a long time to run. LaTeX with Sweave is blazing fast and extremely flexible. Most of the time I can give clients a pdf file. Sometimes I'd like to make Sweave LaTeX files more accessible (and editable) to (gulp) Word users, mainly so they can extract tables and other
2010 Apr 07
1
It This data viz possible in R?
Hi All, I am new to R, but it has been a lot of fun learning as I go and have been blow away by what it can do. Came across this example and wanted to see if ggplot2 or some other visualization package could make this sort of graphic.