Displaying 12 results from an estimated 12 matches for "ontologie".
Did you mean:
ontologies
2002 Sep 05
0
ape 0.1 is released
...quences from GenBank via internet, and
several tools such as Mantel's test, computation of minimum
spanning tree, or the population parameter theta based on
various approaches.
Bug reports, comments and suggestions on Ape are welcome.
Emmanuel Paradis
Laboratoire de Pal?ontologie
Institut des Sciences de l'?volution
Universit? Montpellier II
F-34095 Montpellier c?dex 05
France
phone: +33 4 67 14 39 64
fax: +33 4 67 14 36 10
mailto:paradis at isem.univ-montp2.fr
http://www.isem.univ-montp2.fr/ISEMFre/Equipes/PPP/PPerso/Paradis.php
-.-.-.-.-.-.-.-.-.-.-.-.-.-....
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
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
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 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",
2000 May 18
1
tutorial "R pour les débutants" is available on CRAN
...tout en donnant des d?tails utiles (le plus
souvent sous forme de tableaux). Tout commentaire ou suggestion serait
grandement appr?ci?. Si certaines personnes pensent qu'une tranduction en
anglais serait utile, je serais pr?t ? examiner cette possibilit?.
Emmanuel Paradis
Laboratoire de Pal?ontologie
Institut des Sciences de l'Evolution
Universit? Montpellier II
F-34095 Montpellier c?dex 05
France
phone: +33 4 67 14 39 64
fax: +33 4 67 14 36 10
mailto:paradis at isem.univ-montp2.fr
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-announce mailing list -...
2000 May 18
1
tutorial "R pour les débutants" is available on CRAN
...tout en donnant des d?tails utiles (le plus
souvent sous forme de tableaux). Tout commentaire ou suggestion serait
grandement appr?ci?. Si certaines personnes pensent qu'une tranduction en
anglais serait utile, je serais pr?t ? examiner cette possibilit?.
Emmanuel Paradis
Laboratoire de Pal?ontologie
Institut des Sciences de l'Evolution
Universit? Montpellier II
F-34095 Montpellier c?dex 05
France
phone: +33 4 67 14 39 64
fax: +33 4 67 14 36 10
mailto:paradis at isem.univ-montp2.fr
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-announce mailing list -...
2001 Oct 16
4
two way ANOVA with unequal sample sizes
...ere a mean to conduct easily the test as in it is in
Neter et al. ?
The same problems occurs with anova(lm(....))?
thank you very much
julien CLAUDE
-------------------------------
CLAUDE julien
Universit? Montpellier II
Institut des Sciences de l'Evolution de Montpellier
Laboratoire de Pal?ontologie (Morphom?trie), Cc64
2, Place Eug?ne Bataillon.
34095, Montpellier, cedex 5
FRANCE
Phone : (33) 4 67 14 47 82
Fax : (33) 4 67 14 36 10
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send &...
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
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
2001 Sep 10
5
?? hmm ??
Hello again!
thanks to all who helped with overlay plots - v. easy in the end.
Anyway, another new(ba)bee type question - the gurus will cringe I'm sure!
Q. simple R function
mm <- function (u) {
x <- u$GDP
x
m <- mean(x)
m
}
When the function is called the vector "x" does not get printed from within
the function, but the mean value "m" does, why?
I