search for: plotinfo

Displaying 2 results from an estimated 2 matches for "plotinfo".

Did you mean: slotinfo
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) odfWeave("simple.odt", "simpleOut.odt") #----- # Writing to file content_1.xml # Processing code chunks ... # 1 : term hide(label=loadLibs) # 2 : term x...
2006 Nov 24
1
barplot help needed
...label (named "position 1") and each bar in different colors. data1[2],data2[2],data3[2],data4[2] at the next x-axis label (named "position 2") with the same color scheme and so on over the whole length. I managed to plot one set in the following way: par(mai=c(1.5,1,1,0.6)) plotInfo <- barplot(data1, las=2, ylim = c(0,plotMax+1), ylab = "Percentage") arrows(plotInfo,data1,plotInfo, data1 + sd1, length=0.1, angle=90) arrows(plotInfo,data1,plotInfo, data1 - sd1, length=0.1, angle=90) could anybody give me a help on this? Antje