Displaying 20 results from an estimated 2000 matches similar to: "R freezes with text(...., srt = -1e-8) (PR#9347)"
2000 Oct 27
1
par(ask=T) in termplot() (PR#711)
At 11:57 25/10/00 +0100, Brian Ripley wrote:
>> Date: mer., 25 oct. 2000 12:38:55 +0200
>> From: Emmanuel Paradis <paradis@isem.univ-montp2.fr>
>
>> I think it would be nice to have par(ask=T) set by default in termplot(),
>> like it is in plot.lm().
>
>Well, it isn't really the default in plot.lm, the default for `ask' being
>
>interactive()
2000 Oct 25
2
par(ask=T) in termplot()
Hi,
I think it would be nice to have par(ask=T) set by default in termplot(),
like it is in plot.lm().
Best,
Emmanuel Paradis
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)
2001 Dec 26
3
bug with var(rep(1e30, 3)) (PR#1228)
There seems to be a bug with var() when the argument is a vector with
exactly three values of 1e30 (or close to this value). This does not happen
with twice, four (or more) times this value, or another value.
> var(rep(1e30, 3))
[1] 2.971056e+28
> var(rep(1.2e30, 3))
[1] 2.971056e+28
> var(rep(0.9e30, 3))
[1] 2.971056e+28
> var(rep(0.8e30, 3))
[1] 0
> var(rep(1e29, 3))
[1] 0
>
2002 Nov 29
1
KS for goodness of fit
Dear All,
I have two distributions which I don't their nature. I want to check whether they come from the same distribution. I know that I can use KS test however the standart function ks.test applies only the ks test for testing the difference of two samples (non-parametric). By the way the distribution are of Euclidean distances. One of observed and the other of shuffled data.
Thanks,
Ron
2003 Apr 07
3
New window for plot()
Hi,
Can anybody tell me how to open new a new window for plot()? Thanks.
Minghua
2000 Jun 08
1
Undocumented functions (was: Dates on Graphics)
At 19:48 07/06/00 +0200, Friedrich Leisch wrote:
>>>>>> On Wed, 7 Jun 2000 09:41:23 -0700 (PDT),
>>>>>> Thomas Lumley (TL) wrote:
>
>
>TL> Some of this can be done with apropos(), but I don't think you can
keyword
>TL> search from inside R. It would be nice.
>
>
>help.search() might do what you want ...
>
>.f
Yes, but
2002 Dec 19
2
More on scan()
Hi,
If I have a CSV file which has several comments at the top, and the data
start immediately after the line:
@DATA
Is it possible to use the scan() command to get the CSV data into R, by
only reading the lines after @DATA? If so, how can I do it?
Cheers,
Kevin
------------------------------------------------------------------------------
/* Time is the greatest teacher, unfortunately it
2001 Sep 13
3
OT: ps -> eps -> MS Word
I've created a bunch of postscript trees (post.rpart), which I subsequently
edit in Adobe Acrobat 4.05 (I need additional labelling that isn't easy to
add with R). After editing the labels and annotations using Acrobat, I
then export the file to Adobe's .eps format so I can insert the picture
into a Microsoft Word 2000 document. The .pdf file distilled from the .ps
file is
2000 Sep 19
4
methods for interval-censored data
Dear all,
Are there functions or packages in R that can handle interval-censored
data? I have looked in various packages (such as survival5 or event), but
it seems that only right-censored data can be analysed.
More generally, are there methods to analyse both interval-censored
observations and right-censored observations in the same data set?
Thanks in advance.
Emmanuel Paradis
2001 Jan 05
2
crash with scan(..., what=list(,,)) (PR#802)
When reading a file with scan(), the following crashes R under Solaris and
WinNT 4.0 (versions below):
> ads <- scan("Bltiadu.dat", what=list(,,))
Would an error message be more logical? Note that the followings work (the
data file has 201 lines and 3 columns):
> ads <- scan("Bltiadu.dat", what=list(0,,))
Read 603 lines
> ads <-
2004 Mar 10
1
Re: R-help Digest, Vol 13, Issue 9
C?dric Finet wrote:
>
> I thank you for your answer but I do not understand yet why the Fisher?s exact
> test does not work. And why is a "negative key".
>
> C?dric Finet
>
Running the original TOMS643 fortran code (R uses an f2c translation of
this) says:
FEXACT ERROR: 30
Stack length exceeded in f3xact. This problem should not occur.
The integer hash key is
2001 Feb 28
2
(off topic) Re: Notepad
At 21:57 28/02/01 +0100, Peter Dalgaard BSA wrote:
>Jim Lemon <bitwrit at ozemail.com.au> writes:
>
>> 3) The usual number of responses spent a lot of time dissing NotePad and
>> advertising their favorite editor. As various contributors noted,
>> NotePad actually does most of the things that some people said it
>> doesn't. Positive advice (like the fact
2003 Dec 04
2
extracting p value from GEE
Dear R users,
If anyone can tell me how to extract the p values from the output of gee?
Many thanks in advance.
Yu-Kang
_________________________________________________________________
§K¶O¸ÕÅ¥ MSN ^»y¾Ç²ß¡G©M¯u¤H¦Ñ®v½u¤W¾Ç^¤å http://www.msn.com.tw/english/
2001 Apr 28
1
modulus operator gets syntax error (PR#925)
Full_Name: M. Edward Borasky
Version: 1.2.2
OS: both Windows 2000 and Red Hat Linux 7.1
Submission from: (NULL) (208.130.245.188)
According to the R language manual, "%" is the modulus operator. However, on
both Windows and Linux, I get a syntax error when I type
records <- 100000
records % 1000
I tried wrapping the operands with "as.integer ()" but that didn't help
2001 Sep 13
2
image plot legends
Hi,
is there anybody knowing a possibility to produce a legend
(describing the color scheme) in an image plot in R. In S-Plus
this works using image.legend.
Thank's in advance.
INGO
--
-----------------------------------------------------------------
Ingo Roeder
Institute for Medical Informatics, Statistics and
2001 Oct 10
2
How to comment out multiple lines in R source code?
Hi,
Is there a way to comment out multiple lines at once in R source code like C
language's /* */ struct?
This is quite useful when one is testing different sections of a source
code.
Thanks,
Jonathan
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info",
2004 Feb 08
1
APE: compar.gee( )
Dear all,
I don't understand the following behaviour: Running compar.gee (in
library ape ) with and without the option 'data', it give me different
results
Example:
.... Start R ....
> load("eiber.RData")
> ls()
[1] "gee.na" "mydata" "mytree"
> library(ape)
> # runnig with the option data= mydata
> compar.gee(alt ~ R,
2001 Feb 01
3
Rotated mtext
I seem to remember this coming up before, but I can't find it any messages I've
saved or in the archives (searching by subject). I want to rotate mtext so that
it's perpendicular to the right side. I tried srt=90 and lots of other values,
but it seems to be ignored. Is there a way to do this?
______________________________________________________________________
Stuart Luppescu
1999 Aug 16
2
axis ignores srt/crt (PR#249)
Rotated text for axis labels should be possible with one of
par(srt=90)
axis(1,at,labels)
par(srt=0)
or
axis(1,at,labels,srt=90)
(or similar with crt instead of srt)
None of these works in pre0.65 or in 0.64.2
_
platform sparc-sun-solaris2.7
arch sparc
os solaris2.7
system sparc,
2011 Feb 25
1
question about "srt" argument in text() plotting function
Just wondering: it appears that "srt" does not accept a vector of
values, just a single value. I ended up using tapply() as the
following code snippet shows, so it's not a major problem. I was justa
little surprised that this argument (srt) differs from things like
"labels," "lty," "col," and so on, all of which accept (and recycle
as needed