



Dear,I have developed and tested some models in soilhydrology with NLME library in R. I want to askif it could be possible to submit this to the NLMElibrary (with sample data) as a toolbox or somethingsothat anyone downloading new components of new versionsof R may simply call (saySSbrookscorey...
--fxcoudert at gcc dot gnu dot org changed: What |Removed |Added CC| |fxcoudert at gcc dot gnu dot | |org Severity|enhancement |minor GCC build triplet|i686-pc-linux-gnu | GCC host triplet|i686-pc-linux-gnu | GCC target triplet|i686-pc-linux-gnu | Last reconfirmed|2005-12-30 18:42:58 |2006-09-25...
Please do not reply to this email- if you want to comment on the bug, go to theURL shown below and enter your comments there.Changed by sebastien (AT) ximian (DOT) com. shadow/794872006-09-25 09:28:58.000000000 -0400 shadow/79487.tmp.320422006-09-25 09:28:58.000000000 -0400@@ -0,0 +1,38 @@+Bug#:...
Peter,There is a much easier way to do this. First, you should considerorganizing your data as follows:set.seed(1) # for replication only# Here is a sample dataframetmp <- data.frame(city = gl(3,10, label = c("London", "Rome","Vienna")), q1 = rnorm(30))# Compute the meanswith(tmp, tapply(q1,c...
Your problem would be a lot easier if you coded the location in onevariable instead of three variables. Then you could calculate the meanswith one line of code:by(results$q1, results$location, mean)With your dataset you could useby(results$London, results$location, mean)by(results$Rome, results$...
Dear R-coreThere is a different output for the apply function due to thechange of unlist as mentioned in the R news.Newly, applying as.factor() (or factor()) instr(dat <- data.frame(x = 1:10, f1 = gl(2,5,labels = c("A", "B"))))(d1 <- apply(dat,2,as.factor))newly returns a character matrix...
I have ran the MSI installer for Python 2.5 several times attempting toinstall to C:Python, however all of the files are placed in C:\ . The installer istold to only install files for me, beyond that I have only chosen thedefaults.If I copy the files after installation, then uninstall Python, I...
Hi all. I know that it's possible to automatically run a Python programin background by giving it the "pyw" extension.This is useful when I release a source ditribution of my program.How could it be possible to do the same thing with an .exe filecompiled with py2exe extension? Do I have to...
Basically I encountered some smallish problems with a couple of modulesand figure I can fix the problems.I did find , should I report myproblem report there and then assign them to myself to fix (and createtest scripts).As you can probably guess I have not provided python fixes before.How compli...
Dear Richard Sandiford,Richard Sandiford <richard (AT) codesourcery (DOT) comwrites 2006-09-23 19:21:11:Hi,I had a read through the patch and noticed a few potential problems.I also noticed a lot of formatting nits (i.e. cases where the codedidn't conform to the coding standards). I know...
25 September 2006 12:29, Mohamed Shafi wrote:I am trying to port GCC 4.1.1 for my target.My target doesn't support float variables.It does'nt have the hardware to support or recongnize float formats.With this in mind do i need to add Floating point emulation support int-target file by...
Hello all,I hope i chose the right list as my question is a beginner-question.I have a data set with 3 colums "London", "Rome" and "Vienna" - thelocation is presented through a 1 like this:London Rome Viennaq1001401021003I just want to calculate the means of a variable q1.I tried following scrip...
