[R] vectorising ifelse()

2005-07-21 Thread Federico Calboli
Hi All, is there any chance of vectorising the two ifelse() statements in the following code: for(i in gp){ new[i,1] = ifelse(srow[i]0, new[srow[i],zippo[i]], sample(1:100, 1, prob =Y1, rep = T)) new[i,2] = ifelse(drow[i]0, new[drow[i]0,zappo[i]], sample(1:100, 1, prob =Y1, rep = T)) }

Re: [R] vectorising ifelse()

2005-07-22 Thread Federico Calboli
] . That's exactly my situation, and is exactly what I want to do. After taking out the typo (and bug) drow[i]0 the code seems to work fast enough... I'll tinker a bit with it, but it could be good enough as it is. Cheers, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology

[R] indexing a vector starting from 0

2005-07-24 Thread Federico Calboli
. Would this be at all possible? Regards, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St. Mary's Campus Norfolk Place, London W2 1PG Tel +44 (0)20 75941602 Fax +44 (0)20 75943193 f.calboli [.a.t] imperial.ac.uk f.calboli [.a.t] gmail.com

[R] from character to numeric over multiple columns

2006-07-21 Thread Federico Calboli
Hi All, I have a data frame of three columns, all of which names. The names in the three cols overlap up to a point, so I might have *Harry* in all three columns, *Tom* in cols 1 and 3 and *Bob* in col 3 only. harry paulbob anita harry tom frank jackharry tom peteben

Re: [R] from character to numeric over multiple columns

2006-07-21 Thread Federico Calboli
Prof Brian Ripley wrote: Are the columns factors or character? I'll try to write code that copes with both: nm - unique(c(as.character(col1), as.character(col2), as.character(col3))) DF[] - lapply(DF, function(x) match(x, nm)) Cheers, it worked. Federico -- Federico C. F. Calboli

[R] putting stuff into bins...

2006-09-26 Thread Federico Calboli
Hi All, I have a vector of data, a vector of bin breakpoints and I want to put my data in the bins and then extract fanciful informations like the mean value of each bin. I know I can write my own function, but I would have thought that R should have somewhere a function that took as

Re: [R] The hidden costs of GPL software?

2004-11-17 Thread Federico Calboli
obtained this way? I don't. So I'd argue that the lack of a GUI is a good thing, because it forces the users to think a bit more about what they want to do, and gives more control on what is going on. Best, Federico Calboli -- Federico C. F. Calboli Dipartimento di Biologia Evoluzionistica

[R] removing message: [Previously saved workspace restored]

2005-03-08 Thread Federico Calboli
, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St Mary's Campus Norfolk Place, London W2 1PG Tel +44 (0)20 7594 1602 Fax (+44) 020 7594 3193 f.calboli [.a.t] imperial.ac.uk f.calboli [.a.t] gmail.com

RE: [R] removing message: [Previously saved workspace restored]

2005-03-08 Thread Federico Calboli
On Tue, 2005-03-08 at 15:57 -0500, Wiener, Matthew wrote: Remove the (now empty, because you deleted all objects) file .RData from the directory. Hope this helps, Thanks, it did fix the problem. Cheers, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public

Re: [R] nested random effects

2005-03-23 Thread Federico Calboli
On Wed, 2005-03-23 at 11:58 -0500, Shaw, Philip (NIH/NIMH) wrote: Hi I am struggling with nested random effects and hope someone can help. I have individuals (ID) who are nested within families (FAM). I want to model an outcome variable, and take account of the intercorrelation of

RE: [R] nested random effects

2005-03-23 Thread Federico Calboli
On Wed, 2005-03-23 at 10:04 -0800, Berton Gunter wrote: An interaction random effect/fixed effect is noted as random ~1|random/fixed in your case random =~1|ID/FAM (but I don't uderstand why indiviuals withing families are fixed and and families are random, but there you go).

Re: [R] Multi-plot figures with different numbers of plots in different rows

2005-03-26 Thread Federico Calboli
On Sat, 2005-03-26 at 17:44 +, Hess, Stephane wrote: Dear all, I have 5 plots that I would like to include in a single figure, spread over two rows. If I use mfrow=c(2,3), and produce my plots one after the other, I will end up with three plots in the first row, and 2 in the second

Re: [R] Error in colMeans ... what's wrong with my data?

2005-04-01 Thread Federico Calboli
On Fri, 2005-04-01 at 20:27 +0200, Hartmut Weinrebe wrote: Having searched and searched I still haven't found what's the problem with my data (I've attached the relevant file). Every time I tried to use the CANCOR-Function I got error messages. So I turned to check my two sets of variables

Re: [R] emacs + R?

2005-04-04 Thread Federico Calboli
On Mon, 2005-04-04 at 10:11 +0200, Giorgio Corani wrote: Dear All, As far I as I have understood reading both your past posting and the documentation, in order to have the command-line completion facility, I have to run R within emacs. However, as I try to start R within emacs as

[R] cat bailing out in a for loop

2005-04-05 Thread Federico Calboli
of what's in xxx$p.value, even if HWE.exact failed to calculte it. Dump anything in there! Is there any way of forcing the loop to carry on? Cheers, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St Mary's Campus Norfolk Place, London W2

Re: [R] Help with three-way anova

2005-04-05 Thread Federico Calboli
On Tue, 2005-04-05 at 15:51 +0100, michael watson (IAH-C) wrote: So, what I want to know is: 1) Given my unbalanced experimental design, is it valid to use aov? I'd say no. Use lm() instead, save your analysis in an object and then possibly use drop1() to check the analysis 2) Have I used

RE: [R] Help with three-way anova

2005-04-06 Thread Federico Calboli
On Wed, 2005-04-06 at 09:11 +0100, michael watson (IAH-C) wrote: OK, so I tried using lm() instead of aov() and they give similar results: My.aov - aov(IL.4 ~ Infected + Vaccinated + Lesions, data) My.lm - lm(IL.4 ~ Infected + Vaccinated + Lesions, data) Incidentally, if you want

Re: [R] how to estimate Type I, Type III SS

2005-04-06 Thread Federico Calboli
On Wed, 2005-04-06 at 21:40 +0900, Kum-Hoe Hwang wrote: Howdy, R gurus I 'd like to know hwo to calculate or estimate SS of Type I and Type III in ANOVA or other anaysis in R. Thanks, If memory seves me well, try Anova in the car package F -- Federico C. F. Calboli Department of

Re: [R] R: function code

2005-04-11 Thread Federico Calboli
On Mon, 2005-04-11 at 12:52 +0200, Clark Allan wrote: HI sorry to be a nuisance to all!!! how can i see the code of a particular function? e.g. nnet just as an example for some function just type the function name and you get the code: ls function (name, pos = -1, envir =

[R] forcing apply() to return data frame

2006-04-21 Thread Federico Calboli
Hi All, I am (almost) successfully using apply() to apply a function recursively on a data matrix. The function is question is as.genotype() from the library 'genetics' apply(subset(chr1, names$breed == 'lab'),2,as.genotype,sep =) Unfortuantely apply puts it's results into a matrix object

[R] data manipulation docs

2006-05-04 Thread Federico Calboli
, so I get back close to square one annoyingly often. Cheers, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St Mary's Campus Norfolk Place, London W2 1PG Tel +44 (0)20 7594 1602 Fax (+44) 020 7594 3193 f.calboli [.a.t

[R] writing 100 files

2006-05-22 Thread Federico Calboli
Hi All, I need to write as text files 1000 ish variation of the same data frame, once I permute a row. I would like to use the function write.table() to write the files, and use a loop to do it: for (i in 1:1000){ bb8[2,] = sample(bb8[2,]) write.table(bb8, quote = F, sep = '\t', row.names =

[R] smoothing plot(x, type ='l')

2006-06-07 Thread Federico Calboli
Hi All, I am using plot(x, type = 'l') for some plotting, but I would like rounded edges rather than jagged edges in the plot (purely for aestetic reasons). How could I achieve that? Cheers, Federico -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College,

Re: [R] smoothing plot(x, type ='l')

2006-06-07 Thread Federico Calboli
Dimitris Rizopoulos wrote: probably you want to use the `lend' argument of ?par(); I hope it helps. Does not seem to work in my case. F -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St Mary's Campus Norfolk Place, London W2 1PG Tel +44 (0)20 7594

Re: [R] smoothing plot(x, type ='l')

2006-06-07 Thread Federico Calboli
Prof Brian Ripley wrote: It I understand you aright, that is done by par(lend) but the default is round. So maybe your graphics device (unstated) on your OS (unstated) does not support this. graphics device = X11 (xserver-xorg) OS = Debian GNU/Linux, Kernel 2.4.27-2-686-smp We need

[R] diagonal matrix: rows rearrangement

2006-06-16 Thread Federico Calboli
Hi All, I have a non-square matrix of 0s/1s. The rows are individuals, and the colums factors. The code is 1 if a factor is present, 0 if not. I would like to rearrange the order of the rows to find if there are any diagonal blocks. Is there a fucntion that would do that already in R? Cheers,

[R] MLE maximum number of parameters

2006-06-19 Thread Federico Calboli
Hi All, I would like to know, is there a *ballpark* figure for how many parameters the minimisation routines can cope with? I'm asking because I was asked if I knew. Cheers, Federico -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St. Mary's Campus

[R] rearranging data frame rows

2006-06-23 Thread Federico Calboli
Hi All, I have two data frames. The first contains data about a number of individuals, coded in the first column with a name, in an order I find convenient. The second contains different data about the same indivduals, in a different order. Both data frame have the individual names in the

[R] logical condition in vector operation

2006-02-08 Thread Federico Calboli
HI All, I have a data frame such as: test x y p d [1,] 1 0 10 21 0 [2,] 2 3 11 12 0 [3,] 3 4 12 23 0 [4,] 3 5 13 24 0 and I want to perfor some operations on the first two coulums, conditional on the uneqaulity values on the 3rd and 4th columns. For instance: j = 3 test[test[,1] ==

Re: [R] logical condition in vector operation

2006-02-09 Thread Federico Calboli
On Thu, 2006-02-09 at 09:22 +0100, Christoph Buser wrote: Dear Frederico From your example it is not clear to me what you like to obtain: Please have a look on the slightly changed example here (I changed two values to show a potentially undesired side effect of your coding. test -

[R] subsetting a list of matrices

2006-02-28 Thread Federico Calboli
that is has a subset each matrix in the list subsetting so I get the 2nd and 3rd row of each (and all columns). How could I do that (apart from looping)? Regards, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St Mary's Campus Norfolk Place

[R] 'less' for R?

2006-03-08 Thread Federico Calboli
Hi All, is there an equivalent of the Unix command 'less' (or 'more'), so I can look at what's inside a data.frame or a matrix without having it printed out on console? I am using R on Debian Linux and Mac OS 10.4.5 Cheers, F -- Federico C. F. Calboli Department of Epidemiology and Public

[R] finding warning point in function

2006-03-12 Thread Federico Calboli
Hi everyone, I would like to find out when and where exactly I get the following warning in a piece of code I've written: Error in [-(`*tmp*`, iseq, value = numeric(0)) : nothing to replace with The code is a for () loop performing a somewhat trivial calculation, modulated by a number

[R] listing nodes in paths

2006-03-18 Thread Federico Calboli
All in all I have 3 paths (not all of the same length) between (8) and (1). Is there already a function in R (whatever the library) that will list the nodes touched in all those three paths (i.e. 8 - 6 - 1; 8 - 7 - 4 - 3 - 1; 8 - 7 - 5 - 3 - 1)? Regards, Federico Calboli -- Federico C. F

Re: [R] listing nodes in paths

2006-03-20 Thread Federico Calboli
Hi All, I found a solution for my question: I have the following adjacency matrix for a directed graph: [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [1,]00000000 [2,]00000000 [3,]10000000 [4,]

[R] as.matrix and one row

2006-03-28 Thread Federico Calboli
need as.matrix to behave in a consisten fashions, so I get as.matrix(x, whatever) [,1] [,2] x12 and as.matrix(rbind(x,y), whatever) [,1] [,2] x12 y34 I tried byrow =T, does not make a thing. Regards, Federico Calboli -- Federico C. F. Calboli Department

[R] speeding up a recursive function

2006-04-02 Thread Federico Calboli
Hi All, is there any general advice about speeding up recursive functions (not mentioning 'don't use them')? Regards, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St. Mary's Campus Norfolk Place, London W2 1PG Tel +44 (0)20

Re: [R] Mixed-effects model for nested design data

2004-04-30 Thread Federico Calboli
, according to your coding of the data, this stem is not always necessary. HTH Federico Calboli -- = Federico C. F. Calboli Dipartimento di Biologia Via Selmi 3 40126 Bologna Italy tel (+39) 051 209 4187 fax (+39) 051 209 4286 f.calboli at ucl.ac.uk fcalboli

[R] RE: 1-way anova, nested model

2004-05-19 Thread Federico Calboli
From what I gather you have 2 treatments 6 samples nested in treatment 12 replicates in sample. I do not know what your dependent veriable is, but I would: code the two treatments as T1 and T2 code the 6 samples as a, b, c, d, e, f so the first three samples belonging to T1 are not confused

[R] Re: Debian R

2004-05-19 Thread Federico Calboli
I have R 1.9.0 on sid, apt-getting stuff from cran... I too noticed that cran has R 1.8.1 for Debian, but as I got R 1.9.0 I just ignored the differences in labelling. BTW, it is R that tells me it is R 1.9.0 when I fire it up. And has the stats library that I did not remember in R 1.8.*

[R] Sum of Squares in a lme model

2004-05-21 Thread Federico Calboli
to fit a second (and wrong in a way) model for something so trivial. I know that the issue has been dealt with before, but I could not find a clear cut answer searching through the archives. Regards Federico Calboli -- = Federico C. F. Calboli Dipartimento di

Re: [R] Sum of Squares in a lme model

2004-05-22 Thread Federico Calboli
On Sat, 2004-05-22 at 03:58, Deepayan Sarkar wrote: Exactly what do you wish to square and sum ? If it's the 'errors' (which in this context is ambiguous), extract them (see ?residuals.lme), square them and sum them. But what are you planning to do with this after you get it ? Make a oh

Re: [R] Sum of Squares in a lme model

2004-05-22 Thread Federico Calboli
not ranting too much. Regards, Federico Calboli -- = Federico C. F. Calboli Dipartimento di Biologia Via Selmi 3 40126 Bologna Italy tel (+39) 051 209 4187 fax (+39) 051 209 4286 f.calboli at ucl.ac.uk fcalboli at alma.unibo.it

[R] plotting a table together with graphs

2004-07-13 Thread Federico Calboli
a nice table will come later). I know it is possible to print tables through LaTeX and the Design/Hmisc libraries, although I would not have a clue about printing it together with graphs, but I'd like something quicker if at all possible. Regards, Federico Calboli

[R] how to upload [forwarded]

2004-07-15 Thread Federico Calboli
[ This was posted to the R-packages list (which I moderate), but definitely doesn't belong there. Martin Maechler ] --- start of forwarded message --- From: Federico Calboli [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: how to upload Date: 15 Jul 2004 18:30:26 +0100 Dear All, I

[R] phylogenetic trees calculation

2004-08-01 Thread Federico Calboli
that will calculate the a phylogenetic tree from such data? I installed ape, but, despite reading the docs, I cannot find a function that would calculate a tree from data like mine (my sight may be getting worse though). Any suggestion is welcome. Regards, Federico Calboli -- Federico C. F

[R] R as programming language: references?

2005-04-12 Thread Federico Calboli
or other reference apart from the green book and the VR S-programming? Cheers, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St Mary's Campus Norfolk Place, London W2 1PG Tel +44 (0)20 7594 1602 Fax (+44) 020 7594 3193 f.calboli [.a.t

Re: [R] R as programming language: references?

2005-04-12 Thread Federico Calboli
On Tue, 2005-04-12 at 17:45 +0800, Feng Chen wrote: Maybe you can try this: http://cran.r-project.org/doc/manuals/fullrefman.pdf I was thinking of something that would not limit itself to defining all possible functions and that I do not have already on my HD... F -- Federico C. F. Calboli

[R] logistic regression weights problem

2005-04-13 Thread Federico Calboli
... what exacly is glm doing with the weight vector? In any case, how would I go about weighting my individuals in a logistic regression? Regards, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St Mary's Campus Norfolk Place, London W2

Re: [R] logistic regression weights problem

2005-04-13 Thread Federico Calboli
: non-integer #successes in a binomial glm! in: eval(expr, envir, enclos) ## Why such inconsistency? Regards, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St Mary's Campus Norfolk Place

Re: [R] How to create a vector with one, two, three, ...?

2005-04-15 Thread Federico Calboli
On Fri, 2005-04-15 at 14:30 -0400, Frank Duan wrote: Hi R people, I met a naive prolem. Could anyone give me a hint how to create such a vector with entries: one, two, three, ...? rvect - c(one, two, three) rvect [1] one two three Is it what you want? F -- Federico C. F. Calboli

[R] Rd.sty problems.

2005-04-18 Thread Federico Calboli
for Debian from the latest .deb files for Sarge on x86 arch. Regards, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St Mary's Campus Norfolk Place, London W2 1PG Tel +44 (0)20 7594 1602 Fax (+44) 020 7594 3193 f.calboli [.a.t

Re: [R] [R-pkgs] Biodem 0.1/orphaning of MAlmig

2005-04-24 Thread Federico Calboli
of any difference in the tarball built by R 2.0.1 and 2.1.0). Regards, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St Mary's Campus Norfolk Place, London W2 1PG Tel +44 (0)20 7594 1602 Fax (+44) 020 7594 3193 f.calboli [.a.t

[R] parsing speed

2005-05-16 Thread Federico Calboli
above or should I actually write the statements of F1 to make the parsing faster? Regards, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St Mary's Campus Norfolk Place, London W2 1PG Tel +44 (0)20 7594 1602 Fax (+44) 020 7594 3193

Re: [R] R unable to run on Mac OS 10.4 Tiger

2005-05-24 Thread Federico Calboli
On Tue, 2005-05-24 at 18:05 +0200, Guillaume Chapron wrote: Hello, I'm running a PB G4 with Mac OS 10.4.1. I have downloaded the latest version R-2.1.0a.dmg. It appears that R does not work. It launches itself, but the window never gets ready, there is written Loading R... and a small

[R] vectorisation suggestion

2005-06-20 Thread Federico Calboli
= made up of a number of repetitions of all the elements of vector1 vector3 = a vector of NAs that is meant to get the result of the counting My problem is that vector1 is about 6 terms, and vector2 is 62... can anyone suggest a faster code than the one I wrote? Cheers, Federico

Re: [R] vectorisation suggestion

2005-06-20 Thread Federico Calboli
On 20 Jun 2005, at 21:24, Erin Hodgess wrote: Hello, Federico! I'm a bit confused about your question, please: What sorts of things are in Vector1, please? numbers (as in numeric) that code individuals Why are you counting NAs in Vector3, please? I am counting how many times the code

[R] R demos

2005-06-24 Thread Federico Calboli
a gross figure of the number of functions in R considering the base install and all the libraries available? Apart from graphics and lattice, are there any more packages producing eye catching graphics (possibly with a survival analysis/epidemiological bend)? Cheers, Federico Calboli -- Federico C

[R] loop over large dataset

2005-07-01 Thread Federico Calboli
Hi All, I'd like to ask for a few clarifications. I am doing some calculations over some biggish datasets. One has ~ 23000 rows, and 6 columns, the other has ~62 rows and 6 columns. I am using these datasets to perform a simulation of of haplotype coalescence over a pedigree (the datestes

[R] loop over large dataset

2005-07-04 Thread Federico Calboli
In my absentmindedness I'd forgotten to CC this to the list... and BTW, using gc() in the loop increases the runtime... My suggestion is that you try to vectorize the computation as much as you can. From what you've shown, `new' and `ped' need to have the same number of rows, right?

Re: [R] loop over large dataset

2005-07-04 Thread Federico Calboli
On 4 Jul 2005, at 12:41, Uwe Ligges wrote: Federico Calboli wrote: In my absentmindedness I'd forgotten to CC this to the list... and BTW, using gc() in the loop increases the runtime... If the data size increases, you cannot expect linear run time behaviour, e.g. because gc

Re: [R] loop over large dataset

2005-07-04 Thread Federico Calboli
On 4 Jul 2005, at 15:15, Peter Dalgaard wrote: Your original code got lost in the threading, but that order of magnitude suggests that you have N^2/2 behaviour somewhere. The typical culprit is code like x - numeric(0) for (i in 1:N){ newx - x - c(x, newx) } in which the

[R] anova(mymodel.lme, type = marginal)

2003-07-30 Thread Federico Calboli
model effect. Regards, Federico Calboli = Federico C.F. Calboli Department of Biology University College London Room 327 Darwin Building Gower Street London WClE 6BT Tel: (+44) 020 7679 4395 Fax (+44) 020 7679 7096 f.calboli at ucl.ac.uk

[R] bwplot colours

2003-08-14 Thread Federico Calboli
, mydata) ? Regards, Federico Calboli = Federico C.F. Calboli Department of Biology University College London Room 327 Darwin Building Gower Street London WClE 6BT Tel: (+44) 020 7679 4395 Fax (+44) 020 7679 7096 f.calboli at ucl.ac.uk

[R] problems installing Design and Hmisc libs

2003-09-23 Thread Federico Calboli
Dear All, when I try to: install.packages(Design); install.packages(Hmisc) I get the following error messages: * Installing *source* package 'Design' ... ** libs g77 -mieee-fp -O2 -fomit-frame-pointer -pipe -march=i586 -mcpu=pentiumpro -O2 -fomit-frame-pointer -pipe -march=i586

Re: [R] problems installing Design and Hmisc libs

2003-09-23 Thread Federico Calboli
You need the Fortran compiler (g77) as well (as indicated by the error message). Is it installed? Is it in your path? Uwe Ligges It was not installed. Now everything works. Cheers, Federico -- = Federico C. F. Calboli Department of Biology

[R] foo.RData or foo.r?

2003-10-03 Thread Federico Calboli
Dear All, I suspect this is kind of dumb, but when I was under the thrall of the dark lord (read, using a W2K box), all my work in R files came out as foo.RData. I moved on to GNU/Linux, and all the old .RData files keep on working as they used. No problems in loading and stuff. But I use R from

RE: [R] foo.RData or foo.r?

2003-10-03 Thread Federico Calboli
On Fri, 2003-10-03 at 13:16, Adaikalavan RAMASAMY wrote: *.R is for the script file and is ASCII type. *.Rdata (or sometimes *.rda) is the usual extension for R data and contains binary information. If you try to cat a *.Rdata file, you will end up with gibberish as it is binary. Try

re: [R] foo.Rdata or foo.r?

2003-10-04 Thread Federico Calboli
Dear All, thanks for your clarifications. When I said that my .RData files load fines, I should have added that the files are images that contain objetcs, not code. In the bad ol' days under the thrall of the dark ruler (W2K), I would write all my code in text files, saved as foo.txt, and then

[R] Re: question regarding variance components

2003-12-03 Thread Federico Calboli
Assuming you are measuring Y and you have factor A fixed and factor B random, I would create a model like: mod-lme(Y ~ A, random=~1|B/A, mydata) VarCorr(mod1) the term random=~1|B tells the model that B is a random factor, adding the /A to get random =~1|B/A tells the model you want the

[R] Re: p-value from chisq.test working strangely on 1.8.1

2003-12-10 Thread Federico Calboli
-squared = 1e-04, df = NA, p-value = 5e-04 Federico Calboli -- = Federico C. F. Calboli PLEASE NOTE NEW ADDRESS Dipartimento di Biologia Via Selmi 3 40126 Bologna Italy tel (+39) 051 209 4187 fax (+39) 051 251 208 f.calboli at ucl.ac.uk

[R] chi square

2003-02-28 Thread Federico Calboli
, Federico Calboli = Federico C.F. Calboli Department of Biology University College London Room 327 Darwin Building Gower Street London WClE 6BT Tel: (+44) 020 7679 4395 Fax (+44) 020 7679 7096 [EMAIL PROTECTED] __ [EMAIL

[R] books

2003-06-17 Thread Federico Calboli
what could be a good one for linear algebra. Something detailed and clear would be better, I do not have the sharpest mathematical brain. Any suggestion is welcome. Regards, Federico Calboli = Federico C.F. Calboli Department of Biology University College London Room 327

[R] GLME

2003-06-19 Thread Federico Calboli
Hi All, does anyone know if the package GLME by J. Pinheiro is available anywhere in any form? checking on the archive I got that it was at some point, as as a beta version (for S-Plus only, alas)... Cheers, Federico = Federico C.F. Calboli Department of Biology

[R] degrees of freedom in a LME model

2003-06-26 Thread Federico Calboli
Dear All, I am analysing some data for a colleague (not my data, gotta be published so I cannot divulge). My response variable is the number of matings observed per day for some fruitlies. My factors are: Day: the observations were taken on 9 days Regime: 3 selection regimes Line: 3 replicates

[R] R and PPC Mandrake

2003-06-27 Thread Federico Calboli
Dear All, is there any problem using the PPC version of Mandrake to run R? Cheers, Federico Calboli = Federico C.F. Calboli Department of Biology University College London Room 327 Darwin Building Gower Street London WClE 6BT Tel: (+44) 020 7679 4395 Fax (+44) 020

Re: [R] degrees of freedom in a LME model

2003-06-30 Thread Federico Calboli
LME is clumping Error and Line-in-regime*Day together, judging by the df I was talking about in my previuos email. To me it should be just another bog standard situation...But if I were smart enough to be a statistician I would not be here doing genetics ;) Regards, Federico Calboli Day Line

[R] DF in LME

2003-07-02 Thread Federico Calboli
, in case the random variable is nominal and the fixed one continuous? Best regards, Federico Calboli = Federico C.F. Calboli Department of Biology University College London Room 327 Darwin Building Gower Street London WClE 6BT Tel: (+44) 020 7679 4395 Fax (+44) 020 7679 7096

[R] methods help and glmmPQL

2003-07-14 Thread Federico Calboli
would expect (no mention of VarCorr, for instance) So, what was the magical command I used to get a list of all the possible ways of skinning an object? Secondly, how do I get to see the SS and MS of the fixed terms of a glmmPQL fit ? Regards, Federico Calboli = Federico

RE: [R] line colors in lattice.xyplot with png device.

2003-07-18 Thread Federico Calboli
for the background try: # open a trellis device. If not open the next step will not work trellis.device(device=windows) #x11 in linux # set background to white. Only works on an open trellis device background-trellis.par.get(background) background$col-white

RE: [R] Problem with packages...

2003-07-21 Thread Federico Calboli
Have you tried to do: library( the library you want) before using the function? Federico = Federico C.F. Calboli Department of Biology University College London Room 327 Darwin Building Gower Street London WClE 6BT Tel: (+44) 020 7679 4395 Fax (+44) 020 7679 7096

[R] continuous independent variable in lme

2003-07-27 Thread Federico Calboli
want rather than something else altogether. Regards, Federico Calboli = Federico C.F. Calboli Department of Biology University College London Room 327 Darwin Building Gower Street London WClE 6BT Tel: (+44) 020 7679 4395 Fax (+44) 020 7679 7096 [EMAIL PROTECTED

Re: [R] continuous independent variable in lme

2003-07-27 Thread Federico Calboli
. Regards, Federico Calboli = Federico C.F. Calboli Department of Biology University College London Room 327 Darwin Building Gower Street London WClE 6BT Tel: (+44) 020 7679 4395 Fax (+44) 020 7679 7096 [EMAIL PROTECTED

[R] data manipulation: getting mean value every 5 rows

2003-07-28 Thread Federico Calboli
8463.3698 18 18 1 7666.0164 18 18 2 7891.2988 Any hints? Regards, Federico Calboli = Federico C.F. Calboli Department of Biology University College London Room 327 Darwin Building Gower Street London WClE 6BT Tel: (+44) 020 7679

[R] malecot migration matrix

2004-01-07 Thread Federico Calboli
, Federico Calboli -- = Federico C. F. Calboli PLEASE NOTE NEW ADDRESS Dipartimento di Biologia Via Selmi 3 40126 Bologna Italy tel (+39) 051 209 4187 fax (+39) 051 251 208 f.calboli at ucl.ac.uk __ [EMAIL PROTECTED

[R] matrix exponential: M^0

2004-01-20 Thread Federico Calboli
11 [2,]111 [3,]111 I would have expected the identity matrix here. I find the same result with every other square matrix I used. BTW, I am using R 1.8.1 on Linux Mandrake 9.1 Cheers, Federico Calboli -- = Federico C. F. Calboli

Re: [R] matrix exponential: M^0

2004-01-21 Thread Federico Calboli
in other problems? Again, many thanks to all for the invaluable help. Regards, Federico Calboli -- = Federico C. F. Calboli PLEASE NOTE NEW ADDRESS Dipartimento di Biologia Via Selmi 3 40126 Bologna Italy tel (+39) 051 209 4187 fax (+39) 051 251 208

[R] logical comparison of two matrices

2004-01-24 Thread Federico Calboli
could be happy just comparing the two diagonals. regards, Federico Calboli -- = Federico C. F. Calboli PLEASE NOTE NEW ADDRESS Dipartimento di Biologia Via Selmi 3 40126 Bologna Italy tel (+39) 051 209 4187 fax (+39) 051 251 208 f.calboli at ucl.ac.uk

[R] left eigenvector

2004-02-12 Thread Federico Calboli
Dear All, how do I compute the left eigenvector of a matrix? I gather that eigen computes the right eigenvectors... Regards, Federico Calboli -- = Federico C. F. Calboli PLEASE NOTE NEW ADDRESS Dipartimento di Biologia Via Selmi 3 40126 Bologna Italy tel

[R] plot(my.procrustes.model) from library {vegan}

2004-02-23 Thread Federico Calboli
on the standard plot function, but I was quite unsucessful. Can anyone give advice? I am happy to give a toy example if needed. Regards, Federico Calboli -- = Federico C. F. Calboli Dipartimento di Biologia Via Selmi 3 40126 Bologna Italy tel (+39) 051 209 4187 fax (+39

Re: [R] plot(my.procrustes.model) from library {vegan}

2004-02-23 Thread Federico Calboli
. The following should do what you asked for: plot(mod.pro$X, asp=1, pch=1) points(mod.pro$Yrot, pch=2) segments(mod.pro$X[,1], mod.pro$X[,2], mod.pro$Yrot[,1], mod.pro$Yrot[,2]) The above solves my problem. Thanks for your help. Best regards, Federico Calboli

Re: [R] Multidimensional scaling and distance matrices

2004-02-26 Thread Federico Calboli
that doing things with R is going to be a better (= more sensible) option. Regards, Federico Calboli -- = Federico C. F. Calboli Dipartimento di Biologia Via Selmi 3 40126 Bologna Italy tel (+39) 051 209 4187 fax (+39) 051 251 208 f.calboli at ucl.ac.uk

[R] Multidimensional scaling and distance matrices

2004-02-26 Thread Federico Calboli
can ONLY be performed on a distance matrix, and I can therefore reasonably expect that some form of transformation to a distance matrix has been performed by Statistica prior to the MDS. It would at least be a first step to understand what exactly Statistica did with the data. Regards, Federico

Re: [R] R-business case

2004-03-18 Thread Federico Calboli
am doing is more of an advantage, IMHO, rather than a shortcoming... from a usability standpoint I never felt I had any problem I could not deal with after some thinking, or asking the list. Regards, Federico Calboli -- = Federico C. F. Calboli Dipartimento

[R] colour scheme in: plot(survfit.model)

2004-03-24 Thread Federico Calboli
is that the colour used for line1 at temperature 18C is not the same for line1 at temperature 28C, which I find extremely confusing. How can I specify to keep the same colour for the same line across the plot? regards, Federico Calboli -- = Federico C. F. Calboli

[R] italian keyboard and ~ symbol

2004-03-30 Thread Federico Calboli
the desired symbol (any combination of keys seems to fail...) Can anyone advice how to produce the ~ symbol, short of a copy/paste from MS Word? Regards, Federico Calboli -- = Federico C. F. Calboli Dipartimento di Biologia Via Selmi 3 40126 Bologna Italy tel

RE: [R] italian keyboard and ~ symbol

2004-03-30 Thread Federico Calboli
On Tue, 2004-03-30 at 11:48, Henrik Bengtsson wrote: Press-Alt + Num1 + Num2 + Num6 + Release-Alt where Num1, Num2 Num6 are 1, 2 6 on the *numeric keyboard* (not the ones above the letter keys) will produce ASCII character 126 (~, tilde) on my WinXP Pro in both Rterm and Rgui for R v1.8.1.

Re: [R] italian keyboard and ~ symbol

2004-03-30 Thread Federico Calboli
On Tue, 2004-03-30 at 12:38, Erich Neuwirth wrote: Before using the sequence Press-Alt + Num1 + Num2 + Num6 + Release-Alt one has to make sure that the numeric keyboard is in NumLock mode, not in cursor mode. If it is in cursor mode, this trick will not work (at least it does not on my

[R] anova(my.lme.model, type=marginal) in Pinheiro and Bates

2004-04-24 Thread Federico Calboli
)? Regards, Federico Calboli -- = Federico C. F. Calboli Dipartimento di Biologia Via Selmi 3 40126 Bologna Italy tel (+39) 051 209 4187 fax (+39) 051 209 4286 f.calboli at ucl.ac.uk __ [EMAIL PROTECTED] mailing list

[R] partial rank correlation coefficient

2005-10-21 Thread Federico Calboli
Hi All, a colleague asked me if R has a function producing a Partial Rank Correlation Coefficient, sensu Blower and Dowlatabadi 1994 [1]. I personally would not have a clue, and I could not find something like that on the search page... although I would not be surprised if it's there under a

  1   2   >