search for: indooroopilly

Displaying 5 results from an estimated 5 matches for "indooroopilly".

2010 Oct 06
3
what is the "NOT IN" operator
...t is remove rows and/or columns. What is the operator for "NOT IN"? I tried (i)! %in% and (ii) ^%in% and both resulted in a "could not find function" error. Kind Regards Emily Deomano | Biometrician BSES Limited | ABN 29 103 760 005 | PO Box 86 | 50 Meiers Road | Indooroopilly Q 4068 Australia P: +61 7 3331 3304 | M: +61 408 656 452 | F: +61 7 3871 0383 | E: edeomano@bses.com.au<mailto:edeomano@bses.com.au> | W: bses.com.au -------------------- Internet e-Mail Disclaimer -------------------- PRIVILEGED - PRIVATE AND CONFIDENTIAL: This email and any fil...
2007 Aug 21
2
compiling R under cygwin
...5.1" "1.5.20s(0.155/4/2)" "20060527 19:21:22" Robert Denham Environmental Statistician Remote Sensing Centre Telephone 07 3896 9899 www.nrw.qld.gov.au <http://www.nrw.qld.gov.au/> Department of Natural Resources & Water QScape Building, 80 Meiers Road, Indooroopilly Qld 4068 ************************************************************************ The information in this email together with any attachments is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any form of review, disclosure,...
2009 Oct 28
0
running aov() and lme() on 64-bit
...1 405 150.84639 <.0001 Main 5 405 3.74269 0.0025 Sub 2 6 0.55782 0.5995 Main:Sub 10 405 0.69772 0.7268 Regards, Emily Emily Deomano Biometrician BSES Limited Postal Address: PO Box 86 Street Address: 50 Meiers Road Indooroopilly QLD 4068 Australia Ph: +61 (0) 7 3331 3306 Mobile: +61 (0) 408 656 452 Fax: +61 (0) 7 38710383 Email: edeomano@bses.org.au<blocked::mailto:jstringer@bses.org.au> Web: www.bses.org.au<http://www.bses.org.au> BSES Limited Disclaimer ----------------------------------------------------...
2002 Jan 24
1
Re: coding factor replicates
How about this. Its not as 'swish' as Doug's response, but it might be a little simpler to think about and adapt... # show the test vector > tmp [1] A B C B C A C B A A B Levels: A B C > # create a named vector to store the number of occurences of each level > index <- numeric(length=length(levels(tmp))) > names(index) <- levels(tmp) > index A B C [1] 0 0
2002 May 15
3
question about scan()
Hi, I am using the scan function to read from a file. In general the syntax I am using is as follows: scan("myfile", list(a = "", b="", c="", d=""), sep=",") The file I am trying to read contains a #< in the 'd' field. When the file is read into an object, the d field comes as "" for that particular string. I