similar to: Re: win.metafiles in linux and R

Displaying 20 results from an estimated 1000 matches similar to: "Re: win.metafiles in linux and R"

2003 Oct 20
1
Re: win.metafiles in linux and R
I posted a similar query some months ago. Some people answered stating that win.metafiles were not available for R in linux. However, I was suggested to use the package RSvgDevice, which allows transforming any graphic device into Scalable Vector Graphics format, this file can then be opened with sodipodi, and really impresive stuff can be achieved. I also noticed that OpenOffice for linux has an
2003 Mar 19
3
The best way to end up with WMF files
Hi all I am doing some stats work for a group of biologists who require windows metafiles (*.wmf) for their publications. To create these, I appear to have two choices: 1. Restart my machine in Windows and use savePlot 2. Keep my machine in linux, save as another format, then convert. I'd rather stay in linux; but how do I get wmf files? I looked at using ImageMagick's convert,
2002 Mar 29
2
wmf on Unix?
libEMF (http://sourceforge.net/projects/libemf/) looks like it may be the solution to generating WMF/EMF files on Unix. It's a general-purpose (LGPL) library that implements the EMF API ... (I was originally going to write to the list to ask why small circles appear to be filled (in src/gnuwin32/graphapp/gdraw.c) by generating a series of rectangles rather than using some kind of
2001 Aug 08
3
"Transparent" background in graphics exported as metafiles
Hi, Under Windows, I am exporting graphs from R (in metafile -emf- format), and want to combine them using a graphic package. It happens that the background of the graph is represented by a filled rectangle (with the color given by bg=...). This is to be expected. However, I find no options to disable this and produce a graph with transparent background. Does such an option exist? If not, then
2009 Sep 08
1
Changing font to times for EMF graphics
Hi, sorry for the simple question. I am usually able to change the font for PDF graphics with pdf.options(family="Times") However, I have found no way yet to get an emf file with a times font. I also tried a detour by using pstoedit to convert a pdf with the desired font to an emf but even there the font does not appear as times. Is there a way to get a times font in an emf file or is
2005 Jul 22
0
Windows metafiles (emf) under Linux
G'day Folks, The R-help list has had assorted threads over the years on the best way for Linux users to produce EMF files, mainly for exchange with Windows users. There have been various suggestions for how this may be possible or ways around the problem, via other formats, but none have seemed very satisfactory. I've found what seems to be a quite simple way to produce EMFs from
2004 May 08
0
Re: metafile copy and R 1.9.0, trellis, grid
OK. Deepayan sent me the copy of a chat on another list between John Fox, Duncan Murdoch and Paul Murrell. The bug in the gui.exe looks like being reported with an example to turn it before he has been definetely fixed. Just try: trellis.device("win.metafile", file="test.emf") data(iris) cloud(Sepal.Length ~ Petal.Length * Petal.Width | Species, data = iris, screen = list(x =
2003 Aug 27
1
Exporting R graphs (review)
Hi guys, Yesterday I posted my first couple of questions (see bottom of this message) to this forum and I would like to thank you guys for all the useful feedback I got. I just would like to make some comments: 1. Exporting R graphs as vector graphics: The best answer came from Thomas Lumley <tlumley at u.washington.edu> He suggested using the RSvgDevice package. As far as I know SVG
2011 Mar 23
3
Sweave: multiple graphic formats, e.g. win.metafile
Dear R devel, being constrained to a windows environment at work and having colleagues being accustomed to the Microsoft Office Suite, I was looking for a way to have the RweaveLatex driver for Sweave automatically generating 'win.metafile's in addition to the pdf graphics. Without this functionalilty, the generation of emf-graphics is quite laborious, I think: <<>>= plotit
2003 Oct 20
1
win.metafile() problem -- possible bug?
As a followup to a previous posting regarding the win.metafile() function, I've been having some problems as well. In my case, I've been converting some scripts from S-SPLUS to R that create graphs in order to take advantage of R's plotmath capabilities. In the sample code shown below, the axis labels display the units for the data. In particular, the units for the y axis are
2011 Feb 04
1
Can an xyplot() plus legend be saved as an Enhanced Windows Metafile (EMF)?
I am trying to save some graphical output including a legend in the Windows Enhanced Metafile (EMF) format. This fails when xyplot() is used rather than plot(). Here is a simple example: require(lattice) a <- c(1:10) b <- c(2,4,5,2,3,5,7,8,9,5) # Output can be saved (or copied to the clipboard) as a Windows EMF image file # from the Graphics Device output window. plot(a , b)
2003 Oct 20
2
win.metafile and Linux
Hi Folks, I see that people have been discussing the win.metafile device on the list since before 2000. Yet I have never seen this on a Linux distribution of R. Is this because the device works by making calls (GPL calls of course!) to a proprietary Windows library? In that case I can understand that it would be far from kosher to implement it on Linux. But I'd like confirmation. I must
2000 Dec 15
1
resolution of windows metafiles
I am having trouble getting smooth-appearing curves in figures produced as windows metafiles using R (R-1.1.1 on Windows 98). When I import them into a word processor (either MS Word 97, or WordPerfect 9.0), the figures appear only slightly bumpy on screen, but when printed, there is a clear jaggedness reminiscent of aliasing. Is there a fix for this (if the answer is "upgrade to 1.2",
2001 Aug 16
1
Windows metafiles in Linux
Just want to express MHO that the graphics produced by wmf.graph() in Splus 6 for Linux is only of barely acceptable quality (e.g., hallow circles were drawn too thick, making the plot look rather awkward). Andy -----Original Message----- From: Prof Brian D Ripley [mailto:ripley at stats.ox.ac.uk] Sent: Thursday, August 16, 2001 10:49 AM To: Victor Moreno Cc: r-help at stat.math.ethz.ch Subject:
2007 Jun 29
1
Print grid/ggplot to a metafile
Dear UseRs called Hadley, or Paul, I am trying to print an edited ggplot2/grid graphics to a metafile. With the commented line below it works, but when I edit the plot by uncommenting the line, it fails, because it's illegal to have 2 graphics in a metafile. It works with pdf, but even then I get two plots, which is a nuisance. I found a workaround by using windows(); savePlot, but it only
2000 Feb 08
2
Windows metafile
Running R : Copyright 1999, The R Development Core Team Version 0.90.1 (December 15, 1999) on NT 4.0 gives me problems with: win.metafile(file="./x.emf") x <- 1:100/7 plot(x,cos(x),type="n") lines(x,sin(x)) abline(v=0:15,h=-2:2/2,col=gray(0.8)) Only labels and titles on axes are in the file. No axes or lines of any kind. (I look at the file by inserting it in Word,
2002 Mar 13
1
win.metafile and multiple plots
I'm having difficulty using the win.metafile command. I'd like to place three plots in one window and then save the window as a metafile. The commands I want to use are: win.metafile("mike.emf",width=3,height=2,pointsize=10) nf <- layout(matrix(c(1,2,3), 3, 1), heights=c(1,1,1)) layout.show(nf) plot(rnorm(10)) plot(rnorm(10)) plot(rnorm(10)) dev.off() However, I get the
2003 Apr 05
3
slides in linux R
Hello, In S-Plus Windows you can transform graphics to Powerpoint very easily, in R Windows you can use enhanced metafiles (.emf) and Powerpoint almost as easy. Is there a simular way with R in Linux to transform to the presentation program in StarOffice or OpenOffice or are you stuck with the pdf device? Fredrik Lundgren
2006 Feb 17
3
Windows metafile problem
Hi All: I'm using win.metafile() to produce windows metafiles. When I use Word to insert the wmf picture, Word gives an error! I did my homework in posting this question, and couldn't find a fix. Any suggestions? Phil Smith CDC
2006 Jul 21
2
Problems with character spacing in windows metafiles...
This problem was posted a couple years ago here: http://tolstoy.newcastle.edu.au/R/help/04/01/0231.html Using Windows XP with R 2.3.1, I am now experiencing the same problem again: when a plot is saved and/or copied as a WMF, the labels do not have the correct character spacing. I am trying to insert the WMF into a MS Word 2003 document (my first mistake, I know), but even when the WMF is