search for: 3826

Displaying 20 results from an estimated 200 matches for "3826".

Did you mean: 3.26
2007 Jul 03
1
termplot - changes in defaults
..." the default. I suspect we could if I allow a way to get the previous behaviour (ylim="free", I think). Brian > Regards, > Bill V. > > > Bill Venables > CSIRO Laboratories > PO Box 120, Cleveland, 4163 > AUSTRALIA > Office Phone (email preferred): +61 7 3826 7251 > Fax (if absolutely necessary): +61 7 3826 7304 > Mobile: +61 4 8819 4402 > Home Phone: +61 7 3286 7700 > mailto:Bill.Venables at csiro.au > http://www.cmis.csiro.au/bill.venables/ > > -----Original Message----- > From: ripl...
2005 Dec 21
3
NextMethod causes R 2.2.0 to crash (PR#8416)
...= i386-pc-mingw32 arch = i386 os = mingw32 system = i386, mingw32 status = major = 2 minor = 2.0 year = 2005 month = 10 day = 06 svn rev = 35749 language = R Bill Venables, CMIS, CSIRO Laboratories, PO Box 120, Cleveland, Qld. 4163 AUSTRALIA Office Phone (email preferred): +61 7 3826 7251 Fax (if absolutely necessary): +61 7 3826 7304 Mobile (rarely used): +61 4 1963 4642 Home Phone: +61 7 3286 7700 mailto:Bill.Venables at csiro.au http://www.cmis.csiro.au/bill.venables/
2008 Feb 13
2
apply on large arrays
I have a big contingency table, approximately of size 60*2*500*500, and I need to count the number of cells containing a count of 1 for each of the factors values defining the first dimension. Here is my attempt: tab1<-with(pisa1,table(CNT,GENDER,ISCOF,ISCOM)) tab2<-apply(tab1,1:4,function(x)ifelse(sum(x)==1,1,0)) tab3<-apply(tab2,1,sum) Computing tab2 is very slow. Is there a faster
2008 Feb 01
6
Accessing the elements of a list
Hi R, I wanted to know how do we access the elements of a list. In particular, v=list(c(1,2,3,4,5),c(1,2,33,4,5),c(1,2,333,4,5),c(1,2,3333,4,5)) I want to access all the thirds items of the elements of the list. i.e., I want to access the elements, 3,33,333,3333. This can be done through sapply as: sapply(v,function(x) x[3]) But I need to access this without using
2002 Oct 16
1
FIXED: error in make pkg-...
...rhaps worth warning windoze users like myself of such perils in readme.packages or somewhere similar! Now I have a new problem, but it looks fixable. Thanks for your attention. Drew Drew Tyre CSIRO Marine Research, PO Box 120 Cleveland, QLD, 4163, Australia drew.tyre at csiro.au voice: +61 7 3826 7263 fax: + 61 7 3826 7222 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help 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 !)...
2007 Jul 02
2
termplot with uniform y-limits
...ifferent components. Notes: the current version of termplot does not allow the user to specify ylim. I checked. the plot tools that come with mgcv do this by default. Thanks Simon. Bill Venables CSIRO Laboratories PO Box 120, Cleveland, 4163 AUSTRALIA Office Phone (email preferred): +61 7 3826 7251 Fax (if absolutely necessary): +61 7 3826 7304 Mobile: +61 4 8819 4402 Home Phone: +61 7 3286 7700 mailto:Bill.Venables at csiro.au http://www.cmis.csiro.au/bill.venables/
2007 Jul 02
2
termplot with uniform y-limits
...ifferent components. Notes: the current version of termplot does not allow the user to specify ylim. I checked. the plot tools that come with mgcv do this by default. Thanks Simon. Bill Venables CSIRO Laboratories PO Box 120, Cleveland, 4163 AUSTRALIA Office Phone (email preferred): +61 7 3826 7251 Fax (if absolutely necessary): +61 7 3826 7304 Mobile: +61 4 8819 4402 Home Phone: +61 7 3286 7700 mailto:Bill.Venables at csiro.au http://www.cmis.csiro.au/bill.venables/
2005 Apr 30
3
as.numeric method for objects of class "difftime"
...e it is always seconds. At the very least I think the help information should carry a big red warning about this rather unusual feature. (It may, I suppose, but I couldn't find it.) Comments? Bill Venables, CMIS, CSIRO Laboratories, PO Box 120, Cleveland, Qld. 4163 AUSTRALIA Phone: +61 7 3826 7251 Fax: +61 7 3826 7304 Mobile: +61 4 1963 4642 Home: +61 7 3286 7700 mailto:Bill.Venables@csiro.au http://www.cmis.csiro.au/bill.venables/
2006 Dec 22
5
substitute creates an object which prints incorrectly (PR#9427)
...ere. The substitution appears to have been made, even though the printed version, this time, suggests otherwise. > y(pi) [1] -0.841471 > sin(pi+1) [1] -0.841471 > Bill Venables CMIS, CSIRO Laboratories, PO Box 120, Cleveland, Qld. 4163 AUSTRALIA Office Phone (email preferred): +61 7 3826 7251 Fax (if absolutely necessary): +61 7 3826 7304 Mobile (rarely used): +61 4 1963 4642 Home Phone: +61 7 3286 7700 mailto:Bill.Venables at csiro.au http://www.cmis.csiro.au/bill.venables/ --please do not edit the information below-- Version: p...
2001 Aug 30
1
GLMMGibbs crashes on seeds data
...inux release 6.2 (Zoot) Kernel 2.2.16-3 on an i686 Suggestions welcome Thanks Peter -- Dr Peter Baker, Statistician (Bioinformatics/Genetics), CSIRO Mathematical & Information Sciences, 233 Middle St/ PO Box 120, CLEVELAND, QLD 4163 Australia. Email: Peter.Baker at cmis.csiro.au Phone:+61 7 3826 7263 Fax:+61 7 3826 7304 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help 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 !)...
2008 Apr 13
4
R equivalent of erfcinv in matlab
I am converting some matlab code into R that use inverse of the complementary error function, erfcinv and did not find an equivalent in R, is there such a function in some contributed modules? Thanks.
2006 Sep 06
1
How to get multiple partial matches?
...set Probe Ch1 Median - B Ch1 Mean - B 72 5S_F_1 501 567 7700 5S_F_2 338 611 7517 5S_F_3 412 467 10687 5S_F_4 380 428 4870 5S_F_5 315 368 6035 5S_F_6 300 359 3826 5S_F_7 350 386 8754 5S_F_8 450 473 6399 5S_F_9 439 494 749 5S_F_10 334 384 I would like to be able to select out all rows with, for example, "5S_F_" in the Probe column (there are non-"5S_F_&quot...
2002 Aug 21
0
Population dynamicist job in Queensland, Australia
...cs, quantitative ecology, fisheries science, applied mathematics, statistics or a related field. Experience in a marine environment is advantageous, but candidates with experience in allied systems will be favourably considered. For enquiries about this role, please contact Cathy Dichmont, on (07) 3826 7219, or email cathy.dichmont at csiro.au <mailto:cathy.dichmont at csiro.au> . Applications should be made on-line, at www.csiro.au/careers <http://www.csiro.au/careers> . Bill Venables, CMIS, CSIRO Marine Laboratories, PO Box 120, Cleveland, Qld. 4163 AUSTRALIA Phone: +61 7 3826...
2007 Nov 15
3
generate combination set
I have a set data={A,B,C,D,E,F,G} I want to choose 2 letter from 8 letters, i.e. generate the combination set for choose 2 letters from 8 letters. I want to get the liking: combination set={AB,AC,AD,....} Does anyone konw how to do in R. thanks, Aimin
2012 May 09
5
Belgian BRI (euroisdn): what to use for a B410P
Hi, I'm experiencing difficulties to get a B410P running with Asterisk 10.3.1 and DAHDI 2.6.1. Am I supposed to use DAHDI for this card and ISDN BRI for my country (Belgium)? thx, BC
2006 Jan 14
2
initialize expression in 'quasi' (PR#8486)
...igData, package:mvbutils, mvb.session.info, package:tools, package:utils, package:RBigData, package:RUtilities, package:RBigLibrary, package:g.data, Autoloads, package:base Bill Venables, CMIS, CSIRO Laboratories, PO Box 120, Cleveland, Qld. 4163 AUSTRALIA Office Phone (email preferred): +61 7 3826 7251 Fax (if absolutely necessary): +61 7 3826 7304 Mobile (rarely used): +61 4 1963 4642 Home Phone: +61 7 3286 7700 mailto:Bill.Venables at csiro.au http://www.cmis.csiro.au/bill.venables/
2021 Jan 02
6
[Bug 3246] New: Include directive doesn't support variable expansion
https://bugzilla.mindrot.org/show_bug.cgi?id=3246 Bug ID: 3246 Summary: Include directive doesn't support variable expansion Product: Portable OpenSSH Version: 8.4p1 Hardware: amd64 OS: Linux Status: NEW Severity: enhancement Priority: P5 Component: ssh Assignee:
2009 Sep 24
2
aggregate() - error message
...,36 7373 36,35 172.7453?? 0.0004???? 35,36 7374 35,36 172.7453?? 0.0001???? 35,36 ? TripsData?2 ? ????????????Trip Distance TimeDiff Tripmatch 1617 19,20 1087.365?? 0.0441???? 19,20 1899 20,19 1087.365?? 0.0207???? 19,20 1915 19,20 1087.365?? 0.0361???? 19,20 3285 20,19 1087.365?? 0.0356???? 19,20 3826 19,20 1087.365?? 0.0697???? 19,20
2008 Mar 04
6
vector manipulations
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?... Nom : non disponible Url : https://stat.ethz.ch/pipermail/r-help/attachments/20080304/9de37092/attachment.pl
2008 Mar 07
5
Puzzling coefficients for linear fitting to polynom
Hi, I can not comprehend the linear fitting results of polynoms. For example, given the following data (representing y = x^2): > x <- 1:3 > y <- c(1, 4, 9) performing a linear fit > f <- lm(y ~ poly(x, 2)) gives weird coefficients: > coefficients(f) (Intercept) poly(x, 2)1 poly(x, 2)2 4.6666667 5.6568542 0.8164966 However the fitted() result makes sense: >