similar to: problem with par(fig=value)

Displaying 20 results from an estimated 200 matches similar to: "problem with par(fig=value)"

1999 Dec 03
1
R-help Digest V1 #34
R-help Digest Friday, December 3 1999 Volume 01 : Number 034 In this issue: [R] model.tables Re: [R] Installing R on Slackware Linux Re: [R] Installing R on Slackware Linux [R] nlmin Re: [R] nlmin Re: [R] nlmin Re: Summary: [R] Wanted: online Introduction to R [R] Applying a function of several variables to data Re: [R] R and XML -- a near perfect
1999 Dec 01
0
problem installing R 0.90
hello all, when running ./configure in my [new] R-0.90 directory, the process stop at the following step : (...) checking whether g77 and gcc agree on int and double... can anybody tell me what's the problem (I believe it is due to g77 but what can I do?) thanks, Mathieu I'm using Redhat 6.0 on a Intel P90 -- ----------------------------------------------------------------------
2004 May 25
2
equivalent of the Splus function "eboulis()"
Hi, Is there a equivalent of the function "eboulis()" (which is a new funtion on Splus) on R? Otherwise, with which function can we see the best number of cluster we have to choose? Thanks in advance, Nicolas BOUGET
1999 Nov 09
0
plrc()
I'm actually 'translating' the S-PLUS package multidim to R and I wonder what is the equivalent to the plrc() function under R. I need it to plot the correlation circle (rough translation from french, hope this means something...) for the plot.acp() function but can't find out any help on it . any help would be appreciated. Mathieu (thanks to T. Lumley for the data() help...)
1999 Nov 08
1
can't read datasets from MASS library
Hello R users, Sorry if this is a dumb question but I'm new to R under Windows (NT) and I can't access datasets from V&R's MASS library : > library(MASS) > attach(UScrime) Error: Object "UScrime" not found > ls() character(0) but I get all the functions...Have I missed something ? Any help would be appreciated. Thanks, Mathieu --
1999 Oct 06
1
R graphics & lyx
hello all, I get problems including graphics from R (0.64) into lyx (1.0.2). I don't understand the difference between .eps and .ps but I think the problem must be here. Does anyone can help ? thanks, Mathieu -- ----------------------------------------------------------------------- Mathieu Ros - 13 rue beviere - 38000 GRENOBLE - 04 76 491 370
1999 Dec 08
0
eps->jpg
hello all, is there a way to convert R graphics (eps format) to jpg from a R function ? thanks for your help, Mathieu -- ---------------------------------------------------------------------- Mathieu Ros - 13 rue b?vi?re - 38000 GRENOBLE - 04 76 491 370 http://www.multimania.com/mathieuros/index2.html DESS ing?nierie math?matique (biostatistiques) Universite Joseph Fourier, Grenoble
2000 Jan 12
0
design()
hello all, Is there an equivalent in R to S-plus design() function, which creates an object of class "design" ? why this funcion isn't implemented (I mean, is there a special reason) ? also, where can I find documentation about .Internal ? thanks, Mathieu -- ---------------------------------------------------------------------- Mathieu Ros - 13 rue b?vi?re - 38000 GRENOBLE -
2000 Feb 14
0
summary : par(fig)
many thanks to P. Dalgaard, J. Fox, J. Lemon, JE. Paradis and J. Polzehl for their quick replies. The original posting is at the end of this summary. I've not well explained myself but I don't wanted to use par(mfrow) or par(mfcol) because I wanted to plot very different graphics and this solution doesn't match my needs. E. Paradis and P. Dalgaard made me discover a new (for me!)
2000 Feb 14
2
par(fig) problem
hello R-users, I'd like to plot four graphics on the same page but with different sizes. I've tried to use : par(fig=c(0,0.5,0,0.6)) plot(fig1) par(fig=c(0.5,1,0,0.6)) plot(fig2) etc... but when a figure is plotted, it erase the previous. I've tried to pass 'new=T' to plot function but it's not possible. What can I do ? is it a bug ? I've already reported this a 2 or
2007 May 03
4
Finding instrumented code
Hi all, So I just took Sun''s dtrace class this week and one thing that piqued my interest was the instrumenting of a process''s instructions and how to find the original instructions. (I''m looking around at resources for learning SPARC assembly to help me when using mdb for analysis, though I vaguely remember pieces from a grad school compiler theory class about 10 years
1998 Mar 26
1
R-beta: multiplot using fig
I followed Bill Venables's suggestion and tried to make a multiplot figure with fig (using R .62). > x<-rnorm(100) > y<-rnorm(100) > x11() > par(fig=c(0,2/3,0,1)) > plot(x,y) > par(fig=c(2/3,1,0,1)) > qqnorm(x) > postscript(file="twoplot.ps") > par(fig=c(0,2/3,0,1)) > plot(x,y) > par(fig=c(2/3,1,0,1)) > qqnorm(x) However
2005 Nov 18
1
How to plot two dataset in one fig?
Hi all, I am new in R tool. I would like to plot two dataset in in fig. Here is what I did for both a and b data sets jpeg(file="a.jpeg") dat<-read.table('a', header=F, sep=',') dim(dat) y<-dat[,1] y<-y[!is.na(y)] plot(y);lines(lowess(y, f=0.05), col = ("red"), lwd=5) dev.off Two questions: 1. How I can save this lowess smooth data? 2. Once I
2011 May 06
1
Sweave: no eps fig
Hi everyone, I'm using R, Latex and Sweave for some years now, but today it confuses me alot: Running Sweave produces only figures in .pdf format, no .eps figures. The header looks like this: <<echo=TRUE, fig=TRUE, label=Fig1>>= There was no error message. Does anybody have an idea? Any changes in the Sweave-package? Or a missing driver or something like that? I recently
1999 Dec 09
0
setting par(fig) resets par(mfrow), par(mfcol)
Can we add a note to the documentation that setting par(fig) resets par(mfrow) and par(mfcol) to c(1,1)? Or are mfrow and mfcol now deprecated in favor of all the split screen stuff? (I was spending the morning trying to write some code that plotted multiple subplots within whatever plot region was active at the moment; I was able to set and reset fig successfully, but got very confused as to
2008 Jul 06
1
Backgrounds in Multiple Plots made with "fig"
The following code was adapted from an example Vincent Zoonekynd gave on his web site http://zoonek2.free.fr/UNIX/48_R/03.html: n <- 1000 x <- rnorm(n) qqnorm(x) qqline(x, col="red") op <- par(fig=c(.02,.5,.5,.98), new=TRUE) hist(x, probability=T, col="light blue", xlab="", ylab="", main="", axes=F) lines(density(x),
2010 Mar 30
1
Paik, et al., NEJM, 2004, Fig. 4, rate of event at 10 years as a function of covariate
Does anyone know how to make a plot like Fig. 4 of Paik, et al., New England Journal of Medicine, Dec. 30, 2004? Given survival data and a covariate, they plot a curve giving "Rate of Distant Recurrence at 10 Yr (% of patients)" on the y-axis versus the covariate on the x-axis. They also plot curves giving a 95% confidence interval. Thanks very much. -Ben The information in this
2008 Aug 09
0
$FIG FUTURE INCOME GENERATOR$
*$FIG FUTURE INCOME GENERATOR$* ** ** *HIGH PAYING SIMPLE ONLINE SURVEY* *EARN $5-$75 PER SURVEY* *CREATE FREE ACCOUNT* *OTHER DETAILS LOG ON TO* *http://www.AWSurveys.com/HomeMain.cfm?RefID=karthick777<http://www.awsurveys.com/HomeMain.cfm?RefID=karthick777> *** *http://www.AWSurveys.com/HomeMain.cfm?RefID=karthick777<http://www.awsurveys.com/HomeMain.cfm?RefID=karthick777> *
2006 Apr 14
0
Updated overview fig
FYI - I made a small but architecturally important change to the opensolaris overview at http://www.opensolaris.org/os/project/crossbow/crossbow_overview.png The new figure better represents our current planned long-term architecture, which allows multiple rings to be assigned to services or protocols *through* a single VNIC, in this case VNIC1, instead of requiring separate VNICs per
2001 Jun 11
0
mult.fig() utility [was "margin text mtext"]
Martin, I have an objection in principle to anything that has the side-effect of clobbering something in the global environment, even something as innocuous looking as "old.par". I certainly object to putting something like that into a public library, however clever and useful the code might be. It just is not safe. As a quick way round this I suggest the following (R only) solution: