search for: crombi

Displaying 11 results from an estimated 11 matches for "crombi".

Did you mean: combi
2007 Dec 21
1
using apply to loop [SEC=UNCLASSIFIED]
...,-(nclass+1)],1,which.max) ## or, if the maximum may be repeated: classified <- apply(data[,-(nclass+1)], 1, FUN = function(x) which(x == max(x))) # the variable _truth_ is just the last column of _data_ ? truth <- data[,nclass + 1] ?table z <- table(classified, truth) HTH Joe Joe Crombie Biosecurity and Information Sciences Bureau of Rural Science Canberra Australia e: joe.crombie at brs.gov.au -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of Louis Martin Sent: Friday, 21 December 2007 11:37 AM To: R-hel...
2016 Nov 16
2
Multiple location DC's with same hostnames
...int me in the correct direction. As a workaround we have renamed the DCs and added static entries in the hosts files and pushing out the DNS suffixes to windows client machines for the respective locations. Hoping we can integrate this into the internal DNS somehow though. Kind regards, John Crombie
2007 Sep 20
1
Identify and plotting symbols. [SEC=UNCLASSIFIED]
...he indices printed on the screen; I just want the points I've already selected to be highlighted. > >I tried > > ind <- identify(x,y,labels=rep("\021",length(x)),offset=0) Why not: ind <- identify(x,y, plot = F) points(x[ind], y[ind], pch = 19) Cheers Joe Joe Crombie Information and Risk Sciences Bureau of Rural Science Canberra Australia p: +61 2 6272 5906 e: joe.crombie at brs.gov.au ------IMPORTANT - This message has been issued by The Department of Agriculture, Fisheries and Forestry (DAFF). The information transmitted is for the use of the intended...
2007 Jan 22
0
[UNCLASSIFIED] predict.survreg() with frailty term and newdata
...ve found references on the R and S-Plus lists which suggest that others have had this problem (in both packages), but I can't find any solution or further explanation. Can anyone suggest a way of getting the predictions I'm after? Any help is greatly appreciated. Kind regards Joe Joe Crombie Information and Risk Sciences Bureau of Rural Science Canberra Australia p: +61 2 6272 5906 e: joe.crombie at brs.gov.au <blocked::mailto:joe.crombie at brs.gov.au> ---------------------------------------------------------------------- IMPORTANT - This message has been issued by The...
2007 Oct 07
0
Break [SEC=UNCLASSIFIED]
Hi, You can exit out of the 'identify()' routine by either: right-click > 'stop' Or click on 'stop > stop locator' in the top-left of the plot window. The script should continue with line1, line2 etc. Cheers Joe Joe Crombie Information and Risk Sciences Bureau of Rural Science Canberra Australia p: +61 2 6272 5906 e: joe.crombie at brs.gov.au -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of jaugusto at saquarema.com.br Sent: Monday, 8 Octob...
2007 Nov 30
0
vector sprintf argument [SEC=UNCLASSIFIED]
Hi Tom, Try this: > G <- "Number: %s" > sprintf(G, toString(A)) [1] "Number: 3, 4, 5" Cheers Joe Joe Crombie Biosecurity and Information Sciences Bureau of Rural Science Canberra Australia p: +61 2 6272 5906 e: joe.crombie at brs.gov.au -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of Tom Sgouros Sent: Friday, 30 November 2007...
2007 Sep 21
0
Time series graphs, question about using zoo [SEC=UNCLASSIFIED]
Hi Fang, An easy way of doing this is by: > matplot(one, pch = LETTERS[1:4], type = 'b') Cheers Joe Joe Crombie Information and Risk Sciences Bureau of Rural Science Canberra Australia p: +61 2 6272 5906 e: joe.crombie at brs.gov.au -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of fang liu Sent: Friday, 21 September 2007 8:35 AM To...
2011 Jul 06
2
What are the advantages of upgrading from 5.6 to 6?
I've just installed CentOS 5.6. What would I get if I upgraded to 6? Would I have to reinstall all applications or could I just restore my /etc and /usr directories and do an update? Thanks, John -- John J. Boyer; President, Chief Software Developer Abilitiessoft, Inc. http://www.abilitiessoft.com Madison, Wisconsin USA Developing software for people with disabilities
2010 Aug 08
5
OT: Package to truncate .mp3 file
I have a 2.9 MB MP3 file. Would like to use about the first 10%, to embed sound on a web page. The Packages I have in Applications > Sound & Video don't seem to be able to edit the file like that. Is there a Package I can get from a Yum Repository that will do that? Using CentOS 5.5 (32 bit). TIA!
2007 Oct 16
0
partitioning data [SEC=UNCLASSIFIED]
Hi Stephen, Check the help for predict.glm(). The argument for passing new data is actually 'newdata', as in: > pred = predict(glm.model, newdata=form[150001:200000,-1], > type="response") Cheers Joe -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of stephenc at ics.mq.edu.au Sent: Tuesday, 16
2007 Oct 24
0
random walk w/ reflecting boundary: avoid control construct? [SEC=UNCLASSIFIED]
Hi Johannes, I came up with the following (assuming that if step[i] is independent of step[i-1] then it is also independent of -step[i-1]): Cheers Joe > # your (unbounded) random walk > k <- cumsum(c(0,sample(c(-1,1), 1000, rep = T))) > > #shift it to positive, to allow following calculations k <- k - min(k) > # set your bound (remember min(k) is now zero) wid <- 10