similar to: vector graphics/ SVG plots via RSvgDevice

Displaying 20 results from an estimated 900 matches similar to: "vector graphics/ SVG plots via RSvgDevice"

2007 Oct 18
5
vector graphics/ ungroup and edit in CorelDraw
System: Linux kernel 2.6.15 Ubuntu dapper R version 2.5.1 ESS 5.2.11 on Emacs 21.4.1 ------------------------- Colleagues Having read the posts on producing perfect graphs in R, or using inkscape to edit R graphics output, I have a related question. Lately I am publishing in a journal that is very picky about their graphics formats. It is more efficient for me to get the final picky details
2005 Jan 06
1
RSvgDevice incomplete svg output
Hi I use RSvgDevice to output plot, and modify them using svg editor (inkscape or sodipodi on Linux). Some month ago, results were perfect. I did exactly the same analysis today on the same data, and unfortunatly the results are different. While looking to the svg file, it seems that all information concerning "fill" and "stroke" of objects are lost. The consequence is that
2005 Sep 03
1
producing SVG files
I am trying to use the RSvgDevice package to produce some SVG graphs which I want to edit with Inkscape 0.42. Under Linux (Kubuntu 5.04) I use the following: library(RSvgDevice) plot(1:10, 1:10) devSVG(file = "/home/adi/Rplots.svg", width = 10, height = 8, bg = "white", fg = "black", onefile=TRUE, xmlHeader=TRUE) but when I tried to load the file into Inkscape it
2012 Nov 16
1
Build without warning RSvgDevice
Hi, I'm trying to build a modified version of the package RSvgDevice, without warnings. I'm having troubles with the description file. Here's the logs : * checking Rd files ... WARNING prepare_Rd: RSvgDevice.Rd:1: All text must be in a section But the RSvgDevice.Rd file seems OKto me, what am I missing ? Thanks for your help, Matthieu Decorde -- Matthieu Decorde,
2007 Apr 26
1
spatial/ patches and gaps/ SADIE
System: Linux kernel 2.6.15 Ubuntu dapper R version 2.4.1 ESS on Emacs 21.4.1 ------------------------- Colleagues I have some spatial patterns of sardine eggs (presence /absence) over 50 years (270 surveys) and I'd like to quantify the patches and gaps to determine how many patches (i.e. spawning areas) there were before the fishery collapse (1951-1965) and during recovery (post 1985).
2010 Nov 04
2
Problems with points in plots when importing from pdf to an SVG editor
Dear R-users When trying to import graphics from an pdf-file to a Vector graphics editor (I use Inkscape, but i've confirmed the same problem on adobe products), all points in the graphics turn out as "q"s. This example displays the beaviour: pdf(file="points are weird.pdf") plot(1:5) dev.off() When importing the file to inkscape, I get five neatly arranged little
2002 Dec 27
2
RSvgDevice & sapply(plotmeans)
Hi, anybody know why this not works for several plots ? When i set onefile=T the plots are stacked one about another , onefile=F only the first plot is shown in AllbusMeansPlots.svg. [h2 is a data.frame] ......hist and sapply works for several plots nice with RSvgDevice ! Maybe setting the title after apply is a problem, but until yet i didn't found a better solution ? library(RSvgDevice)
2005 Jan 05
0
RSvgDevice "stroke" question
I had a quick question on the RSvgDevice package if there are any users out there. I perused the archives and the docs and didn't see anything, maybe I missed? I have created simple boxplots via devSVG() in both Windoze and Linux and it seems that there is an attribute difference in that the Linux generated version has a "stroke:none" instead of the "stoke:#000000"
2005 Jan 10
1
Invisible plot using RSvgDevice
Dear list members, I have a probably simple question concerning the RSvgDevice. After upgrading from R 1.9.0 to R 2.0.1 the computet svg files looking empty. Each time the RSvgDevice 0.5.3 were used. Scales and headers are printed but the plots are missing: <rect x="433.10" y="246.13" width="0.93" height="29.74"
2007 Mar 06
2
SVG and tooltips, hyperlinks
Dear all, is there a good way to create SVG plots with R whose elements have titles (tooltips) or act as hyperlinks? I am using the RSvgDevice package, which works great - but it doesn't seem to support the notion that plot objects have titles or are act as hyperlinks, so I am helping myself by giving the objects funny unique colors and then postprocessing the .svg file. I wonder
2012 Feb 25
0
embed a bitmap by link reference into a SVG image
I would like, in R, to embed a bitmap image /by link reference/ into a SVG plot image. Images may be included in an SVG by http://www.w3.org/TR/SVG/struct.html#ImageElementHrefAttribute link reference , or even http://en.wikipedia.org/wiki/Data_Uri data , for example: My objective is to reduce the size of the SVG image files I am generating (My plots have about 10? points: that's a
2009 Jul 31
1
SVG output on Windows OS
How may one save a graphic as svg on Windows? The svg() command is recognized and functions well on Linux, etc., but not on Windows, it seems. I'm trying to use Hadley Wickam's ggplot2 and I would like to be able to save created charts as svg for later input into Illustrator. I am able to accomplish this workflow under Linux, but I don't know how to get R to recognize the svg() command
2010 Sep 29
1
svg plot and dashed lines
Dear users, When I boxplot(), the lines of the whiskers are dashed. However, when I save in an svg file, the dashed lines of the whiskers are not dashed anymore. How can I have the dashed lines in the svg file? I don't have this problem with a ps file, but I cannot edit such file as easily as an svg file. That's why I'd like to stick to the svg format. Thanks in advance, Ivan df
2011 May 19
2
Error in svg() : cairo-based devices are not supported on this build
Hello, Sorry if it is not the right place.. I installed R-2.13.0 on a x86_64 linux server. All went fine, but the svg() function yells: > svg() Error in svg() : cairo-based devices are not supported on this build I have the Cairo, cairoDevice, RSvgDevice packages installed, and running. > Cairo.capabilities() png jpeg tiff pdf svg ps x11 win TRUE TRUE TRUE TRUE TRUE
2007 Jan 04
0
dashed lines and SVG files devSVG("/folderul/unde/salvez/myplot.svg", width=10, height=10) plot(1:10, 1:10) dev.off()
Dear helpers, I have a question about the SVG device. It works fine, the SVG file is indeed produced, only the graphic differs from the R window. In the SVG file the dashed line is just a regular plain one. My toy example is: library(RSvgDevice) devSVG("myplot.svg", width=10, height=10) plot(1:10) abline(v=5, lty=?dashed?) dev.off() Is there anything more (or different) I should do?
2006 Jan 22
1
including .svg vector graphics?
Hello there, I must say I am quite happy with the output devices for graphics in R already, but still ... I am wondering if there are any plans for incorporating the option to save graphs as ".svg" files. This would make it easy to postprocess figures in R with Inkscape, the open source vector graphics editor. The reason why I would want to postprocess vector graphics is to save
2007 Jan 04
0
dashed lines and SVG files
Sorry for duplicating the message, the previous had an unintended subject line... Dear helpers, I have a question about the SVG device. It works fine, the SVG file is indeed produced, only the graphic differs from the R window. In the SVG file the dashed line is just a regular plain one. My toy example is: library(RSvgDevice) devSVG("myplot.svg", width=10, height=10) plot(1:10)
2007 May 04
0
new package: RSVGTipsDevice: create SVG plots with tooltips & hyperlinks
the DESCRIPTION file: Package: RSVGTipsDevice Version: 0.7.0 Date: 04/30/2007 Title: An R SVG graphics device with dynamic tips and hyperlinks Author: Tony Plate <tplate at acm.org>, based on RSvgDevice by T Jake Luciani <jakeluciani at yahoo.com> Maintainer: Tony Plate <tplate at acm.org> Depends: R (>= 1.4) Description: A graphics device for R that uses the w3.org
2007 May 04
0
new package: RSVGTipsDevice: create SVG plots with tooltips & hyperlinks
the DESCRIPTION file: Package: RSVGTipsDevice Version: 0.7.0 Date: 04/30/2007 Title: An R SVG graphics device with dynamic tips and hyperlinks Author: Tony Plate <tplate at acm.org>, based on RSvgDevice by T Jake Luciani <jakeluciani at yahoo.com> Maintainer: Tony Plate <tplate at acm.org> Depends: R (>= 1.4) Description: A graphics device for R that uses the w3.org
2006 Jan 15
0
Firefox slide show with embedded SVG
Now that T. Jake Luciani has created a working RSvgDevice package (with one function called devSVG), we can produce SVG output from ordinary plots, not necessarily just those made with grid. Since Firefox and Mozilla support SVG (in recent versions), this might be a good way to put figures in web pages in a way that can be easily scaled, and even (with tweaking) manipulated with scripts.