Displaying 20 results from an estimated 1000 matches similar to: "More on scan()"
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
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
2003 Apr 07
3
New window for plot()
Hi,
Can anybody tell me how to open new a new window for plot()? Thanks.
Minghua
2002 Jun 26
6
GUI's for teaching
Dear All,
There is no advantage of GUI over CLI, IMO. The real
issue is the answer to the questions: "What should I
do next?" or "What am I allowed to do here?"
A "nice" interface, not necessarily GUI, will offer
friendly answers: "I was expecting you to do _this_"
or "In this situation you are allowed to do _these
things_"
You see, it's all
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 <-
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()
2002 Sep 05
0
ape 0.1 is released
Ape is an R package for "analyses of phylogenetics and evolution". The
first version (0.1) has been released on 27 August 2002 and is available on
CRAN.
>From the 'Description' file of version 0.1:
Ape provides functions for reading, and plotting
phylogenetic trees in parenthetic format (standard Newick
format), analyses of comparative data in a
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
>
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",
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
2006 Nov 07
1
R freezes with text(...., srt = -1e-8) (PR#9347)
Full_Name: Emmanuel Paradis
Version: 2.4.0
OS: Linux
Submission from: (NULL) (193.49.41.124)
Adding text to a plot makes R freeze if 'srt' is given a very small negative
value, eg:
plot(1, type = "n")
text(1, 1, "some text....", srt = -1e-8)
But if 'srt = -1e-6' (or smaller) or 'srt = -1e-19' (or greater), this works.
This seems to be OS-dependent:
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
2001 Sep 07
2
adding logical vector to data frame
Hello. I'm afraid that I'm missing something very obvious this
afternoon...
When I add a column to a data.frame (by assigning to a "new" column
name a logical vector), I thought that I had (at least) 3 options to
do so:
R> j <- data.frame (x=1:2)
R> j$y <- c(TRUE,FALSE) #assignment 1
R> str(j)
`data.frame': 2 obs. of 2 variables:
$ x: int 1 2
$ y: logi
2018 Apr 03
2
names lost in functions from packages installed by R-devel r74500
Dear list members,
If I install with R-devel r74500 on Windows (sessionInfo below) the
attached 'bugdemo' package with the single function
foo <- function() {
? named <- c("bar"=TRUE)
? print(named)
? return(named)
}
then run
> bugdemo::foo()
[1] TRUE
[1] TRUE
The "bar" name is lost. It is not lost when I define foo in the R
session instead of using
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/
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 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
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