Displaying 9 results from an estimated 9 matches for "plotfil".
Did you mean:
plotfit
2005 Apr 29
2
postscript() filenames with forward slashes cause abort
My newly installed R-2.1.0 apparently doesn't like forward slashes in
filenames:
> R.version.string
[1] "R version 2.1.0, 2005-04-18"
> plotfile <- "\home\mean_monthly_stl.eps"
> postscript(plotfile)
> plotfile <- "/home/mean_monthly_stl.eps"
> postscript(plotfile)
*** glibc detected *** double free or corruption (!prev): 0x098e7180 ***
Abort
Does this have something to do with UTF-8 (about which I know...
2007 Jun 19
1
Multiple plot jpeg file
R-Help,
I am executing a R script and would like to put multiple plots into a
single file. For some reason the contents of plotfile.jpg always seem to
contain the last plot and not all plots.
If I do same thing with pdf, a multiple plot file is created.
Can you help me?
Regards,
Bill
Bill Hunsicker
RF Micro Devices
7625 Thorndike Road
Greensboro, NC 27409-9421
bhunsicker at rfmd.com
336-678-5260(w)
336-207-3895(m)
336-67...
2005 Jan 14
0
Code contributed for a gant (Gantt) chart
I searched CRAN for material on gant (or Gantt) charts, those schedule
plots that look like horizontal barplots where the x-axis is time.
Finding none, I wrote the following and am submitting it to the archive
so that it may help someone in the future.
plotfile <- "gant.eps"
regular.color <- "lightgray"
important.color <- "yellow"
tasks <- list() # Define tasks. Start and end refer to times.
tasks[[length(tasks) + 1]] <-
list(name = "Name of first task", start = 0, end = 3, color =
regular.colo...
2004 Dec 13
4
Calling R from a non-X shell script to plot?
I am trying to run R from an apache C++ module in a shell script to
plot some data to display it in apache later. I get the error
(reported in apache's logs):
Xlib: connection to ":0.0" refused by server
Xlib: No protocol specified
Error in X11(paste("png::", filename, sep = ""), width, height, pointsize, :
unable to start device PNG
In addition: Warning
2011 Feb 16
2
how to create normalized pdf plot?
Hello,
I have multiple data files. Each file contains a single column and 1.5
million rows. I want to create normalized pdfs (area under curve is 1) and
histograms to compare with one another. Could anybody suggest if there
exists an easy way or built in function in R.
At present I am using Origin and Excel together to do this. A single file
needs 10 minutes and I have a total of 929 files! So
2006 Mar 11
1
Layout, xyplot and saving in file
...(rot=45,tick.number=0,
relation="free",cex=0.01,tck=0.1),
y=list(tick.number=6),cex=0.6,rot=45,relation="free"),
par.settings=sp,
index.cond=list(unique(decg$patnam[order(decg$ndose)]))
)
print(test)
savePlot(filename="d:/plotfiles/HRindiv",
type="wmf",
device=dev.cur())
----------------------------------------------------------------------------------------------
Note that the cex=0.01 in the x scale is the poor man's solution that I
have found to minimize
the height of the la...
2005 Jun 03
3
plots from batchfile on windows
Hi,
On windows I'd like to run a batchfile that leaves me a plot. As a
test I have the scriptfile "test.r" which only contains:
x <- 1:10;
y <- sample( 10 )
plot( x, y )
Now I tried the following (but nothing worked):
a) "R --vanilla < test.r" in the cmd window, => that doesn't give me a plot
b) the same, but I added
2005 Feb 18
4
R & bash script
Hi
how is it possible to use more than one command when i'm
didn't want use R CMD BATCH for specific reason?
$ echo "(x<-1:10)" | R --vanilla
works
$ echo "(x<-1:10 ;y<-20:30 ;lm(y ~ x))" | R --vanilla
works not.
Is it further possible using bash variables like $i from a loop
in the bash echo call i.e. dm$x$i$k <-
2007 May 22
5
Reducing the size of pdf graphics files produced with R
Hi,
Without trying to print 1000000 points (see <http://
finzi.psych.upenn.edu/R/Rhelp02a/archive/42105.html>), I often print
maps for which I do not want to loose too much of coastline detail,
and/or plots with 1000-5000 points (yes, some are on top of each
other, but using transparency (i.e. rgb colors with alpha
information) this actually comes through as useful information.