search for: odfweavecontrol

Displaying 17 results from an estimated 17 matches for "odfweavecontrol".

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
2011 Dec 17
1
odfWeave error
...m 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: The system cannot find the path specified. The system cannot find the drive specified. Error: content.xml? does not seem to be XML, nor to identify a file name log > odfWeave(filein, fileout, control = odfWeaveControl(cleanup = T)) ? Copying? c:\my documents\examp...
2011 Dec 16
1
odfWeave
...m 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: The system cannot find the path specified. The system cannot find the drive specified. Error: content.xml does not seem to be XML, nor to identify a file name log > odfWeave(filein, fileout, control = odfWeaveControl(cleanup = T)) Copying c:\my documents\examp...
2010 Mar 17
0
odfWeave: odt-file damaged
...achy when decompressing. In the case of Udo's example that would be: ####################################################################### #R code library(odfWeave) #odfWeave call odfWeave("c:/temp/odfWeave-test.odt", "c:/temp/odfWeave-test-out.odt", control = odfWeaveControl(zipCmd = c("7z a -tzip $$file$$ .", "7z x -tzip $$file$$"))) ####################################################################### That's all! In my case: Well, no, I had extra problems because 7z wasn't in my path and because there was a white space in...
2009 Jul 06
1
odfWeave: odt-file damaged
...or Child and Adolescent Psychiatry Philipps University of Marburg, Germany ####################################################################### #R code library(odfWeave) #odfWeave call odfWeave("c:/temp/odfWeave-test.odt", "c:/temp/odfWeave-test-out.odt", control=odfWeaveControl(zipCmd = c("7z a -tzip $$file$$ .", "7z e -tzip $$file$$"))) ####################################################################### # Contents of my Open office document <<Initiate, results = hide, echo= FALSE>>= #First steps with odfWeave attach(iris) @...
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
2010 Mar 17
0
Antw: odfWeave Error
Hi, I am using 7-zip for unzipping (http://www.7-zip.org/). Then odfWeaveControl needs to be set to odfWeaveControl(zipCmd=c("c:/programme/7-zip/7z a -tzip $$file$$","c:/programme/7-zip/7z x $$file$$ -aoa")) -> control where 'c:/programme/7-zip/' is the path to my 7-zip installation. You can then use control to set the control-parameter in od...
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 Aug 25
1
several odfWeave questions
...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 \SweaveOpts{} directives in Sweave? (I looked at odfWeaveControl, it doesn't seem to do it.) 2. I tried to write a Makefile directive to process files from the command line: %.odt: %_in.odt $(RSCRIPT) -e "library(odfWeave); odfWeave(\"$*_in.odt\",\"$*.odt\");" This works, *but* the resulting output file gives a wa...
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$$")) > > odfWeave("C:/testat.odt", "C:/iris.odt", control = odfctrl) Copying C:/testat.odt Setting wd to D...
2006 Jul 29
0
Version 0.4.3 of odfWeave
...de is executed. - a bug fix for default plot device units (to prevent bitmap graphics from being 480x480 inches on non-Windows systems). - a check was inserted at the beginning of the odfWeave function to test for zipping/unzipping utilities. This is only done if the default value for zipCmd in odfWeaveControl was not used. A more meaningful error message is produced. - the manual is now a "legal" package vignette and accessible using vignette("odfWeave"). Thanks to Manuel Morales, Ronggui, Andrew Robinson, Frank Harrell and David Hajage for their help in finding bugs. Please send...
2006 Sep 06
0
odfWeave Version 0.4.4
...ges 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 specifications, such as format and size, have been moved out of odfWeaveControl. They are now controlled by the functions getImageDefs and setImageDefs. This change allows the user to easily modify the image properties in code chunks so that figures can have different sizes or types throughout the document. - When odfWeave is invoked, a check for a zip program is done and a...
2006 Sep 06
0
odfWeave Version 0.4.4
...ges 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 specifications, such as format and size, have been moved out of odfWeaveControl. They are now controlled by the functions getImageDefs and setImageDefs. This change allows the user to easily modify the image properties in code chunks so that figures can have different sizes or types throughout the document. - When odfWeave is invoked, a check for a zip program is done and a...
2006 Jul 29
0
Version 0.4.3 of odfWeave
...de is executed. - a bug fix for default plot device units (to prevent bitmap graphics from being 480x480 inches on non-Windows systems). - a check was inserted at the beginning of the odfWeave function to test for zipping/unzipping utilities. This is only done if the default value for zipCmd in odfWeaveControl was not used. A more meaningful error message is produced. - the manual is now a "legal" package vignette and accessible using vignette("odfWeave"). Thanks to Manuel Morales, Ronggui, Andrew Robinson, Frank Harrell and David Hajage for their help in finding bugs. Please send...
2009 Feb 04
1
odfweave sample code error
Hi R-team, I am new user of R 2.8.1 in windows 2003 environment. I use Tinn-R as code editor. When running the sample codes from odf manual the following error occured. I have winzip installed in my system. I used openoffice writer under windows to create the example1.odt file. can anybody help me out to fix the bug. the code executed is as follows: library(odfWeave) > inFile <-
2010 Apr 28
1
Errors when trying to open odfWeave documents
Hello I tried the odfWeave package today, by running the formatting.odt and example.odt files that are included with the package. They both ran fine, but when I try to open them in my OpenOffice (OpenOffice 3.1.1 on Kubuntu 9.10) I get an error "Format error discovered in the file in sub-document content.xml at 1293,124(row,col)." I also tried to open them in MS Word 2003 (Windows
2006 Jul 17
6
Output and Word
Hi I have just started to have a look at R. I have used most stats software packages and can use perl, visual basic etc. I am interested in how well it handles lots of output e.g. tables or charts. How would you get lots of output most easily and quickly into a Word document? Sharon Snowdon ------------------------------------------------------------------------ - FIGHT BACK AGAINST SPAM!