Re: [R] problem whit Geneland

2009-01-13 Thread Christoph Heibl
Christoph Heibl Systematic Botany Ludwig-Maximilians-Universität München Menzinger Str. 67 D-80638 München GERMANY phone: +49-(0)89-17861-251 e-mail:he...@lmu.de http://www.christophheibl.de/ch-home.html SAVE PAPER - THINK BEFORE YOU PRINT On Jan 13, 2009, at 11:20

Re: [R] plot Geneland result in a map

2008-12-10 Thread Christoph Heibl
Christoph Heibl Systematic Botany Ludwig-Maximilians-Universität München Menzinger Str. 67 D-80638 München GERMANY phone: +49-(0)89-17861-251 e-mail:[EMAIL PROTECTED] http://www.christophheibl.de/ch-home.html SAVE PAPER - THINK BEFORE YOU PRINT On Dec 10, 2008, at 9:52 AM

Re: [R] Nested Clade Analysis

2008-11-24 Thread Christoph Heibl
, the code does not support reticulations in the network and you might encounter bugs in it, because it was not tested with datasets other that mine. If you are interested, drop me a line. Christoph Heibl Systematic Botany Ludwig

Re: [R] Binary Tree Testing in ape package (a bug?)

2008-09-04 Thread Christoph Heibl
- phylo' mailing list. Christoph Heibl Systematic Botany Ludwig-Maximilians-Universität München Menzinger Str. 67 D-80638 München GERMANY phone: +49-(0)89-17861-251 e-mail:[EMAIL PROTECTED] http://www.christophheibl.de/ch

[R] Unicode notation \x000

2008-08-25 Thread Christoph Heibl
Boot ROM Version: MB21.00A5.B07 SMC Version: 1.17f0 Serial Number:W87187FAYA4 Sudden Motion Sensor: State:Enabled Christoph Heibl Systematic Botany Ludwig-Maximilians-Universität München Menzinger Str. 67 D

Re: [R] backslash in character string?

2008-08-04 Thread Christoph Heibl
\) Christoph Heibl Systematic Botany Ludwig-Maximilians-Universität München Menzinger Str. 67 D-80638 München GERMANY phone: +49-(0)89-17861-251 e-mail:[EMAIL PROTECTED] http://www.christophheibl.de/ch-home.html SAVE PAPER - THINK BEFORE YOU PRINT [[alternative HTML

Re: [R] How to change the class of data?

2008-06-12 Thread Christoph Heibl
Try: x - factor(1:10) class(x) x + 1 class(x) - numeric x+1 On Jun 12, 2008, at 8:24 AM, Qman Fin wrote: Hi all, I have some data x, which are actualy consisted of numerical enties. But the class of this matrix is set to be factor by someone else. I used class(x), it turns out to be

[R] LaTeX in system()

2008-05-08 Thread Christoph Heibl
system () command? Thanks in advance for any advice! Christoph Christoph Heibl Systematic Botany Ludwig-Maximilians-Universität München Menzinger Str. 67 D-80638 München GERMANY phone: +49-(0)89-17861-251 e-mail:[EMAIL

Re: [R] add a row...

2007-09-14 Thread Christoph Heibl
Use rbind: d - c(14,21) b - rbind(d, b) CH On 14.09.2007, at 16:15, Alfredo Alessandrini wrote: Hi, If I've a dataframe like this: a - data.frame(a=c(14,21,14,4), b=c(21,45,23,11)) print(a) a b 1 14 21 2 21 45 3 14 23 4 4 11 I can delete the first row with: b = a[-(1),]