Displaying 20 results from an estimated 800 matches similar to: "Baffled: triggering error message with an sd result in odfWeave?"
2006 Jun 13
11
Question: Migration - multiple creates
I want to create a migration file that creates multiple tables, so i''m
guessing the correct format would be:
Can anyone confirm ? I''m guessing that each new create script requires a
seperate class so formatted this way.  Perhaps I''m wrong.
TIA
Stuart
class CreateTable1 < ActiveRecord::Migration
  def self.up
    create_table :table1s do |t|
    t.column :length,
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
2007 Jun 25
1
eps in odfWeave
Dear Weavers,
Does someone have an example of using eps or any other vector graphics with
odfWeave? It tried the example below (and commented variants) with
simple.odt in the examples directory, and got an error.
Dieter
#---
library(odfWeave)
plotInfo <- getImageDefs()
plotInfo$type = "eps"
#plotInfo$device = "postscript"
setImageDefs(plotInfo)
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
  
2009 Apr 11
1
Install odfWeave on Ubuntu 8.10 Intrepid Ibex
Hello togheter,
I've installed R with this instruction:
http://edtechdev.blogspot.com/2009/03/r-in-ubuntu-intrepid.html
After that I tried to install odfWeave with this:
> install.packages("odfWeave")
Then there came this warning:
Warnung in install.packages("odfWeave") :
  Argument 'lib' missing: use
'/home/johannes/R/i486-pc-linux-gnu-library/2.8'
2006 Sep 19
1
odfWeave help
Hi R users
I haven't  run odfWeave example, R give me:
Setting wd to
C:\DOCUME~1\MARIOM~1\CONFIG~1\Temp\Rtmph2Nzqb/odfWeave19070343633
  Copying  C:/ARCHIV~1/R/R-23~1.1/library/odfWeave/examples/simple.odt
  Decompressing ODF file using unzip -o "simple.odt"
Erro en odfWeave(demoFile, outputFile) : Error unzipping file
Adem?s: Warning message: unzip no encontrado
I have installed
2013 Feb 18
3
odfWeave: Trouble Getting the Package to Work
Hello All,
Have recently started learning Sweave and Knitr. Am now trying to learn odfWeave as well. Things went pretty smoothly with Sweave and Knitr but I'm having some trouble with odfWeave.
My understanding was that odfWeave should work in pretty much the same way as Sweave. With odfWeave, you set up an input .odt file in a folder, run that file through the odfWeave function, and then
2009 Oct 08
3
odfWeave & XML error in post-processing
I've been happily building a file with odfWeave, and just as the hour 
draws nigh for it to be sent off, odfWeave or XML throws  the following 
catastrophic error:
...this is the tail of entirely uneventful processing of input file.....
 31 : term xml(label=LR_Fall_Model_Results)
  32 : term verbatim(label=LR_Model_Fall_graph)
  33 : term xml(label=LR_OMC_tab)
 'content_1.xml' has
2012 May 29
1
odfWeave fails to load
R version 2.15.0 (2012-03-30)
Copyright (C) 2012 The R Foundation for Statistical Computing
ISBN 3-900051-07-0
Platform: i386-pc-mingw32/i386 (32-bit)
package ?survey? successfully unpacked and MD5 sums checked
package ?odfWeave.survey? successfully unpacked and MD5 sums checked
> library(odfWeave.survey)
Loading required package: odfWeave
Error: package ?odfWeave? could not be loaded
any
2012 Mar 08
2
Novice Alert!: odfWeave help!
Hello world,
I'm pretty new to computer code: for example, I consider it a small
victory that I (all by myself!) managed to ssh into the server at my
lab from home and copy a file onto my desktop. Be gentle. I have
primarily used R for running some pretty mid-level statistics
(creating distance matrices, manipulating graphs for pretty figures,
etc).
I'm working through Bolker's
2011 Feb 22
1
odfWeave graphics glitch
Using R2.12.1 on Ubuntu 10.04.1 I've tried to run the following code chunk in odfWeave
<<fig1, echo=TRUE,fig=TRUE,width=7,height=4>>=
x<-seq(1:100)/10
y<-sin(cos(x/pi))
imageDefs <- getImageDefs()
imageDefs$dispWidth <- 4.5
imageDefs$dispHeight<- 4.5
setImageDefs(imageDefs)
X11(type="cairo")
plot(x,y)
title(main="sin(cos(x/pi))")
2010 Aug 31
1
odfWeave
Dear -r-helpers,
I'm trying to get my students to use odfWeave. Windows users are having 
trouble. I would appreciate advice.
Comment 1:
Hello I have spent a while today trying to get odfWeave to be successful I 
installed the unzip and zip program but it has not changed the error message.I 
have copied the error message below but I am sure it is the one others have 
experienced.
>
2011 May 13
1
issue with odfWeave running on Windows XP; question about installing packages under Linux
Good morning R community,
I have two questions (and a comment):
1)
A problem with odfWeave. I have an odf document
with a table that spans multiple pages. Each cell in the table is
populated using \sexpr{<R stuff>}. This worked fine on my
own machine (windows 7 box using any R2.x.y, for x>=11) and
on a colleagues machine (Windows XP box running R2.11.1).
However, on a third machine
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$$"))
> 
>
2013 Apr 11
3
odfWeave: Some questions about potential formatting options
Hello All,
Learning to use the odfWeave package. I really like the package. It has good documentation, makes some very nice looking tables, and seems to have lots of options for customizing output.
There are a few things I'd like to do that don't seem to be covered in the documentation though. So I'm not sure if they're possible or not. 
Here's a list of some things I'd
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:
2008 Apr 14
1
odfWeave: in multi-page plots only last page appears in document
Dear all,
Max, first of all, many thanks for providing the odfWeave package.
My problem: Whenever I have multiple plots in one single chunk of my
ODF file, only the last plot gets shown. The problem can be reproduced
with this toy example (to be used in an ODF file together with
odfWeave -- I'm using the newest version 0.7.3):
<<plot1, echo=FALSE, fig=TRUE>>=
for (i in 1:3) {
  
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:
2007 Jun 05
1
multiple plot in odfWeave
Hello R users,
I found the odfWeave package to create an odf document. It seems to be a 
very nice tool.
So i tried to used it to create a report with multiple plot:
I create an odt file with some code inside:
I connect to a mysql database
I get a list of projects
foreach project I would like to make a plot (a map exactly)
then in a R console I use the odfweave (inFile, outFile) function.
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