Displaying 20 results from an estimated 2000 matches similar to: "insert eps into microsft word"
2003 Jul 23
2
Read trajectory file into R
dear helpers,
I wonder if there is a way to read a molecular dynamic trajectory file (
binary file) produced by CHARMM into R. Something like that in matlab.
Actually this will save tremendous effort in post processing.
best regards
karim
2003 Nov 09
1
weird behaviour of eigen()
I'm using R 1.7.1 under linux redhat
it seems that the eigen values produced by eigen() do not follow
a consistant order; I mean either ascending or discending
e.g
for one system:
eigenV<-eigen(V)
> print(eigenV$values)
[1] -7.706828e+13 -4.702980e+13 -3.267579e+13 -1.701297e+13
-8.041677e+12
[6] -5.707311e+12 -5.053941e+12 -4.774652e+12 -4.280423e+12
-3.798905e+12
2006 Mar 01
1
postscript bounding box in trellis/lattice plot is wrong ?
Hi, a problem involving postscript bounding boxes:
I'm composing three scatterplots into a single figure,
postsript for publication.
The individual scatterplots should be square, so
the overall figure should have a roughly 1:3 sort of
aspect ratio.
By default however, the overall figure comes out
nearly square,
and the scatterplots are stretched vertically.
I fixed this by adding
2010 Mar 10
1
pie EPS BB
Greetings all!
I'm facing a puzzle I have not been able to solve.
I need to make an EPS of a pie-chart (Yes, I know;
please don't bother to tell me! I just need to ...).
I'm trying to do it with pie(), and I want to have
just the plain pie-chart with no annotations. So far
so good: "labels=rep(NA,...)" will do it.
But I want to have it output to an EPS file with the
2012 Feb 09
1
Arial font in eps figures in R
Hi,
I am trying to create a graph using Arial font (as required by PLoS One). I have read probably all posts in R-help on this topic, as wells as R-news 2006.
The code I have been trying is following:
Arial <- Type1Font(family="Arial",
metrics=c("ArialMT.afm", "arial-BoldMT.afm", "Arial-ItalicMT.afm",
2004 Dec 06
2
Blank eps output files
Dear all,
The following commands results in a blank graph file,
postscript(file = "C:/Temp/Fig1.eps", height=4.0, width=4.0,
horizontal = FALSE, onefile = FALSE, paper = "special")
x11(height=3,width=3)
par(mar=.1+c(4.5,4.5,0,0))
x <- c(10,20,30)
y <- c(5, 7, 9)
plot (x,y)
dev.off()
The codes function normally without any error in the command window.
However, the
2005 Jul 22
3
problems with submitting an eps-file created in R
Dear all
I've got some problems submitting a manuscript, because I can't manage
creating the favourable eps-file of a graph created in R. The journal's
graphic requirements are as followed:
format: eps
width: max. 6 inches
resolution: min. 1000 dpi
supported fonts: Arial, Courier, Helvetica, Symbol, Times, Charcoal,
Chicago, Geneva, Georgia, Monaco, Zapf, New York
Itried to ways
2006 Jan 18
6
some EPS rotated in journal preview
I am trying to send a manuscript to a journal.
One of the figures build by R is in the right orientation and 4 are rotated clockwise 90 deg in the preview.
I used the right click save to PS option and I used the command line
postscript("c:/temp/fig04.eps",bg="transparent",onefile = TRUE ,pointsize=20,paper = "letter",height=8,width=8,horizontal=FALSE,family =
2003 Oct 08
4
Unpredictable EPS->PDF rotation (PR#4460)
Dear r-bugs,
When I create EPS files, they sometimes appear rotated in my LaTeX PDF
document and sometimes they don't. Two examples:
## x1.eps is not rotated in LaTeX
x <- seq(-1, 1, length=100)
postscript("c:/x1.eps", height=3, width=4,
horizontal=FALSE, onefile=FALSE, paper="special")
plot(x, dnorm(x), type="l")
dev.off()
## x2.eps is not
2005 Mar 02
3
orientation of eps files
hello,
i have a problem with the orientation of eps files produced with the postscript() command. i have generated some eps files with R using:
postscript(file = filename, horizontal = FALSE, paper = "special", onefile = F
ALSE, height = height, width = width, pointsize = pointsize)
now, when i include these eps files into a standard paper document (ie. a4 paper, portrait orientation)
2008 Dec 12
0
RODBC and Microsft Visual C++ Runtime Library
Hello,
I am using RODBC and some times when I use a sqlSave I recive this message:
Microsft Visual C++ Runtime Library
RunTime Error!
Program C:\Archivo de programa\R\R-2.8.0\bin\Rgui.exe
This application has requested the Runtime to terminate it in an
unusual way.
Please contact the application's support tean for more information.
is it a bug? is there
2004 Dec 28
1
How to convert from Microsft PCM 16bit to float
Dear all,
I have one simple question. I understand that
speex_encode and speex_decode takes float * as an
arguement to encode and decode the sound. However,
when I get the PCM data from the sound card under
win32, it is a just 16 bit array. May I know how do I
convert this 16 bit value to speex float format and to
convert back? Is there got any routine to do this?
YueWeng
2004 May 17
2
"ghost" image in .eps file
Greetings-
An odd situation has developed. I use the following code to create .eps
files of two very similar graphs:
postscript(file='resources.bygt.eps', onefile=FALSE, horizontal=TRUE)
barplot(resources.bygt.matrix,
beside = TRUE,
legend.text=c('narrative','doubt'),
2009 Sep 07
1
Freelancer Microsft Games
hey ive been playing Freelancer for quite some time now and ive always had a windows disto installed so i can play it, i'm excited now beacuse i might now beacble to run ubuntu only.
Freelancer had some bugs id like to report minor but informations is always good
Odd video glitches durning install (Txt was wrong color)
Music in game was playing only 2 sec in and looping
Crashed when i
2003 Sep 10
1
OT: Win2k ts - cannot start microsft outlook
This is off-topic so please let me know if it is inappropriate. I thought
i'd post here as a lot of people on the list seem to be using samba with ms
terminal server.
I have profile problem ito roaming profiles from my samba dc not loading
when you log onto w2k terminal server.
I reloaded one of the servers, installed sp4 and installed ms office 2000
using the termsrvr.mst file.
When a
2005 Jan 18
4
embedding fonts in eps files
Hi,
I have to make eps files with fonts embedded.
I use the following postscript command:
postscript("fig3a.eps", width = 5.2756, height = 7.27, pointsize =
7,horizontal = FALSE, onefile = FALSE, paper = "special",family =
"Times")
plot(...)
dev.off()
Are fonts automatically embedded in this way?
How can I see that?
If not, how to do it?
regards, Rudi.
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)
2001 Feb 08
4
eps file not positioned properly in latex document
Dear People,
I am trying to include a barplot (see code below), in a latex document.
However, the plot appears in totally the wrong position. I know this is
not an R question as such, but the eps file is produced by R and I thought
that perhaps other people had had similar problems and could give me
pointers. Am I doing anything obviously wrong?
Sincerely, Faheem Mitha.
PS.
2005 Oct 03
3
Getting eps into Word documents.
A student in one of my courses has asked me about getting R graphics
output (under Linux) into a Word document. I.e. she wants to do her
R thing under Linux, but then do her word processing using Word.
Scanning around the r-help archives I encountered an inquiry about
this topic --- eps into Word documents --- from Paul Johnson but
found no replies to it. I tried contacting him but the email
2008 Oct 11
1
producing colour .eps output
I am using the following code to produce a graphic:
library(lattice)
postscript("figs%03d.eps", width = 6.0, height = 6.0,
?????????? horizontal = FALSE, onefile = FALSE, paper = "special")
xyplot(cases~yr|agrp*sex,data=data[tse==0 & expgrp==1,],
groups=source, pch=".", type="l",
?????? main="Exposure group 1, time since entry 0")
The