Displaying 20 results from an estimated 800 matches similar to: "R-beta: problem with graphics parameter "fin""
1998 May 07
2
R-beta: 0.61.3: Problems on DEC Unix 4.0
Hi,
I had some trouble compiling the new R version on my Alpha:
make[2]: Entering directory `/usr2/local/R/src/graphics'
cc -ieee_with_inexact -O -Olimit 2000 -I/usr/local/include -I../include -c
gdevice.c
cc -ieee_with_inexact -O -Olimit 2000 -I/usr/local/include -I../include -c
graphics.c
cc: Error: graphics.c, line 808: An unexpected newline character is present in a
string literal.
1998 May 07
2
R-beta: 0.61.3: Problems on DEC Unix 4.0
Hi,
I had some trouble compiling the new R version on my Alpha:
make[2]: Entering directory `/usr2/local/R/src/graphics'
cc -ieee_with_inexact -O -Olimit 2000 -I/usr/local/include -I../include -c
gdevice.c
cc -ieee_with_inexact -O -Olimit 2000 -I/usr/local/include -I../include -c
graphics.c
cc: Error: graphics.c, line 808: An unexpected newline character is present in a
string literal.
2005 Apr 29
2
Automating plot labelling in custom function in lapply() ?
Dear List,
Consider the following example:
dat <- data.frame(var1 = rnorm(100), var2 = rnorm(100),
var3 = rnorm(100), var4 = rnorm(100))
oldpar <- par(mfrow = c(2,2), no.readonly = TRUE)
invisible(lapply(dat,
function(x) {
plot(density(x),
main = deparse(substitute(x))) }
)
)
2010 Jun 23
5
Plotrix Trick
Dear All,
I am using the plotrix library to plot some matrices.
I have a problem: some of my data are outliers, hence using a linear
color scale does not work very well (you would see too many cells having
a similar, indistinguishable color). See the code snipped at the end of
the email.
Plotting the logarithm of the data gets the job done, but my problem is
that I would like to write in every
2016 Apr 21
2
clock24.plot/radial plot
Dear All,
I am trying to generate a circular/radial plot. The script below has a
result I am looking for:
testlen<-rnorm(24)*2+5
testpos<-0:23+rnorm(24)/4
clock24.plot(testlen,testpos,main="Test Clock24 (lines)",show.grid=FALSE,
line.col="green",lwd=3)
if(dev.interactive()) par(ask=TRUE)
# now do a 'daylight' plot
1999 Mar 30
0
New SuSE rpms + DU 4.0 binaries
Hi,
I updated my R rpms for SuSE systems. They are now available both for
S.u.S.E 5.3 and SuSE 6.0 under
ftp://ftp.ci.tuwien.ac.at/pub/R/bin/linux/suse/
Additionally I put binaries for DEC Alpha systems running Digital Unix 4.0
under
ftp://ftp.ci.tuwien.ac.at/pub/R/bin/osf/osf4.0/alpha/
These packages are available as rpms and as a setld kit. setld is the
Digital Unix package maintanance
2001 May 12
0
Re: [R] R for ARM Linux (moved from r-help to r-devel)
On Fri, 11 May 2001, Cox, Terry (NEI) wrote:
> I am interested in your efforts to port R to ARM Linux. If you are
> successful, then I have a good reason to spend the money to buy a Compaq
> iPAQ.
I have compiled R-1.2.2 for arm-linux (iPAQ) on the skiffcluster, an ARM
compile farm accessible at
http://www.handhelds.org/projects/skiffcluster.html
and R-1.2.3 using cross
2016 Apr 22
0
clock24.plot/radial plot
I use ggplot2 for all my plotting needs where you can make plots circular
with the coord_polar. Maybe this will help you along:
http://rstudio-pubs-static.s3.amazonaws.com/3369_998f8b2d788e4a0384ae565c4280aa47.html
On Fri, 22 Apr 2016 at 08:31 Ogbos Okike <giftedlife2014 at gmail.com> wrote:
> Dear All,
> I am trying to generate a circular/radial plot. The script below has a
>
2003 Jan 08
2
Problem with fontsize of pie-chart in postscript file
Hi all,
I've a problem with the size of the labels of my pie-charts when I try to
write them to a postscript file. I need to increase the default size, so I
change cex (see below). On screen this works fine, but cex doesn't seem to
affect the postscript-file. Any suggestions?
Thanks a lot,
Daniel
Copy/Past-example (will try to write to c:/temp!):
labels <- c("I",
2007 Dec 27
1
warning on gamma option in par(args) or calling par(= new)?
Dear All,
I have the following function
tstpar <-
function(n = 200, want.pdf = FALSE, pdfFileName = NULL){
oldpar <- par(no.readonly = TRUE)
on.exit(par(oldpar))
steps <- seq(from = 1, to = 8, by = 1)
h <- 10; w <- 6
if(want.pdf){pdf(file = pdfFileName, onefile = TRUE,
paper = "letter", width = w, height = h)}
par(mfrow = c(4,2))
for(i
1998 Nov 19
0
SuSE RPMs available
Hi,
first versions of RPMs of R and its libraries for SuSE 5.3 are available
at CRAN:
ftp://ftp.ci.tuwien.ac.at/pub/R/bin/linux/suse/
I compiled it with gcc and g77 from egcs 1.1b.
There are still some problems:
+ the "event", "gnlm", ... libraries are missing (g77 complains about
wrong declarations)
+ "modreg" does not work (library contains
2016 Apr 22
2
clock24.plot/radial plot
Kind Experts,
Many thanks for your guide. I have tried to figure out something that
can help me plot my own data using the examples you referred me to. I
copied part of the code as:
set.seed(44)
N=500
events <- as.POSIXct("2011-01-01", tz="GMT") +
days(floor(365*runif(N))) +
hours(floor(24*rnorm(N))) + # using rnorm here
1998 Feb 26
2
R-beta: question on dyn.loaded code
Hi,
when designing libraries for R, is it possible to call C/Fortran
subroutines from other dynamically loaded code?
The following example crashes R:
********* fn1.c *****************
void twice(int *i)
{
*i = 2 * *i;
}
*********************************
********* fn2.c *****************
extern int twice(int *i);
void negtwice(int *i)
{
*i = -1 * twice(i);
}
1998 Feb 26
2
R-beta: question on dyn.loaded code
Hi,
when designing libraries for R, is it possible to call C/Fortran
subroutines from other dynamically loaded code?
The following example crashes R:
********* fn1.c *****************
void twice(int *i)
{
*i = 2 * *i;
}
*********************************
********* fn2.c *****************
extern int twice(int *i);
void negtwice(int *i)
{
*i = -1 * twice(i);
}
2004 Jun 11
2
Sweave and multiple graphs
Dear list,
I am using Sweave to build a small report. I want to produce a series of
figures, each figure containing a number of plots and then have them
included in the Sweave file.
An example would be to :
postscript(file = "ANCbwplot%03d.eps", onefile = FALSE, other options...)
oldpar <- par(mfrow = c(2,2))
....
do lots of plots to produce a number of eps files
....
par(oldpar)
2005 Sep 16
1
How to make two figures in one plot - package vcd
Dear all,
I have a problem to make figures with two columns in package vcd.
Here an example code I take from "\library\vcd\html\plot.loglm.html"
What I need, I want to make two figures in one plot.
How could I do that.
I have tried with
layout(rbind(c(1, 1, 2, 2)))
but the same result, two plot.
Best wishes, Muhammad Subianto
library(vcd)
oldpar <- par(mfrow=c(1, 2))
## mosaic
1998 Mar 13
0
R-beta: modified "help.start()"
Hi,
this modified version of help.start() makes it possible to store R Documentation
on your (intranet) webserver.
This could be necessary if you run netscape and R from different systems on one
X11 display (if there is no $RHOME directory on the host running netscape).
help.start() <-
function (gui = "irrelevant", browser = "netscape", remote = NULL)
{
if
2008 Nov 13
1
Boxplots with different variables and different ranges in R
Dear all,
I am trying to make boxplots in one diagram but it is not working. Actually I have a large dataset, around 35 water quality variables with different units and of course in different ranges (some are orders of magnitude bigger than others). I want to produce one diagram with all the boxplots of the variables of my dataset.
I tried these series of commands:
>oldpar <-
2012 Sep 06
1
Change margin size of complex barplot
Dear R-help members,
with the help of one of you the following R-Code was developed. No I have the (probably simple) problem that I want to increase font size of "text" and "ylab" names from 1 to 2. Unfortunately I'm not able to adjust the margin so, that the plot is appers complete (all names readable) on a 8:14 Inch scale plot.
Some times I get the error message that
2004 Jun 11
1
space-time k function problem
I am intersted in time-space clustering of local industry.
I made the point file, polygons and time table then run 'stkhat' function in Splancs,
but it generates only time k function. I noticed that it has only one ks value. ...
Can anybody help me?.
thanks in advance.
countiespt <- read.table('d:/dissertation/dailynew/jun10/countiespt_ok.txt', sep=",")