search for: protest

Displaying 20 results from an estimated 126 matches for "protest".

Did you mean: protect
2010 Dec 01
1
procrustes results affected by order of sites in input file
...scores=TRUE, trace=TRUE, zero="add") invert.mds<-metaMDS(bugcal.a, distance="bray", k=3, trymax=100, wascores=TRUE, trace=TRUE, zero="add"), where fish.data and invert.data are site-by-abundance matrices for fish and invertebrates, respectively. I have then used protest() to test the significance between the two ordinations: protest.results<-protest(fish.mds, invert.mds, scale=TRUE, symmetric=TRUE, permutations=999) The problem is, the results of the protest analysis seem to be affected by the original ordering of sites in the data input files. That is, if I...
2006 Nov 24
0
[OT} Protest the Novell - Microsoft Agreement - Sign Bruce Perens petition
Protest the Microsoft-Novell Patent Agreement self explanatory http://techp.org/petition/show/1 Craig
2005 Feb 02
5
Planet Ruby on Rails
I just setup a Planet aggregator site for Ruby on Rails blogs and the wiki. It''s at: http://www.planetrubyonrails.org/ jim
2015 Jan 30
4
Another Fedora decision
On Fri, 30 Jan 2015 14:15:05 -0800 Akemi Yagi <amyagi at gmail.com> wrote: > On Fri, Jan 30, 2015 at 2:04 PM, Scott Robbins <scottro at nyc.rr.com> > wrote: > > On Fri, Jan 30, 2015 at 03:39:47PM -0600, Frank Cox wrote: > >> On Fri, 30 Jan 2015 16:13:17 -0500 > >> Scott Robbins wrote: > >> > You may have noticed how if Fedora, by some odd
2015 Jan 31
1
Another Fedora decision
...> I have to tap it twice all the time. But don't tell this to > > anyone! ;-) > > OP's point is that probably in RHEL8 you won't be able to do even > that anymore. Exactly. There is some complaining going on on the Fedora testing list, not sure where else one can protest. -- Scott Robbins PGP keyID EB3467D6 ( 1B48 077D 66F6 9DB0 FDC2 A409 FA54 EB34 67D6 ) gpg --keyserver pgp.mit.edu --recv-keys EB3467D6
2016 Jan 25
4
Just need to vent
On Mon, Jan 25, 2016 at 03:56:21PM +0000, Always Learning wrote: > Of course Alice can. All of us can. Hopefully it is constructive > criticism. Seeing good software being replaced by less good, less > useful and more awkward software usually provoke the software's users to > protest. Complaining on the CentOS list is probably not that productive, though. -- Jonathan Billings <billings at negate.org>
2007 Nov 11
4
Who''s using --format rdoc
I''m doing some housekeeping and just realised that the rdoc formatter produces gibberish: http://rspec.rubyforge.org/rdoc/files/EXAMPLES_rd.html Will anyone protest if I just go ahead and remove it? (I can''t imagine anyone using it, especially with the much better HTML formatter) Aslak
2015 Jan 31
4
Another Fedora decision
...his to >>>> anyone! ;-) >>> >>> OP's point is that probably in RHEL8 you won't be able to do even >>> that anymore. >> >> Exactly. There is some complaining going on on the Fedora testing >> list, >> not sure where else one can protest. >> > > Well, protesting here would be meaningless .. as is protesting systemd > here. CentOS-8 will have whatever is in the RHEL-8 source code, > exactly > as it is in that source code minus branding. Just like CentOS-2.1, 3, > 4, 5, and 6. Our goal is to rebuild the sou...
2008 Jul 30
1
Re creating Procrustes Plot in Lattice
Hi, I have been trying to create a function to generate a Procrustes plot, generated from package "vegan" in lattice. standard vegan code as follows library(vegan) pro=protest(P1, P8, permutations=4999,choices=1:4) plot(pro) Now, here is the code for the function that I have failed to get to work properly. panel.procrustes=function(x,y) }Pro=protest(x,y,permutations=4999,choices=1:4) Proplot=plot(Pro) } xyplot(P1[1:4]~P8[1:4],panel=panel.procrustes) I can generate an...
2002 Apr 13
2
trouble getting output from graphs, again
...different, I cannot get output saved just right. This is on RedHat 7.2 with R 1.4.1. The png output looks fine, but the eps output has the problem that the bounding box on the legend cuts the legend in half. I put a copy of a bad one here: http://lark.cc.ukans.edu/~pauljohn/ResearchPapers/meanProtest-box.eps When I asked about these chores about 6 months ago, I got some tips which have worked other times. I had the impression that if I set the size of the x11 device to match the eventual ps output size, then all would be OK. But its not this time. Here's my code: dat <- read.table(...
2015 Jan 31
0
Another Fedora decision
...all the time. But don't tell this to >>> anyone! ;-) >> >> OP's point is that probably in RHEL8 you won't be able to do even >> that anymore. > > Exactly. There is some complaining going on on the Fedora testing list, > not sure where else one can protest. > Well, protesting here would be meaningless .. as is protesting systemd here. CentOS-8 will have whatever is in the RHEL-8 source code, exactly as it is in that source code minus branding. Just like CentOS-2.1, 3, 4, 5, and 6. Our goal is to rebuild the source code exactly, bugs and all....
2023 Mar 27
1
Your message to Icecast awaits moderator approval
...d use it to send further emails to ?user@?. I?ve been on the Internet a looong time, and these old mailman style things aren?t that common these days. I am involved in a lot of community projects though, so I do understand the need for cheap and platform-less. Again, I don't get why you're protesting an established mailing list. To quote Montell Jordan, "This is how we do it!" ;)
2011 Jun 16
2
How to secure our Asterisk server from hacker's ?
Hi List, I want to secure my server from the hacker's. What is the case by which I can protest it. I have done security of Dialplan, Sip,IAX base security. For linux we are working on Iptables. What else is left so that I will do it too... -- ----- Thanks and regards Virendra Bhati +91-9172341457 Asterisk Engineer -------------- next part -------------- An HTML attachment was scrubbed...
2004 Jan 30
3
looping over factors
...bie question. I tried: > b [1] caseX caseY caseZ Levels: caseX caseY caseZ > length(b) [1] 3 > > for (i in b) { + print (b == i) ; + print (i); + } [1] FALSE FALSE FALSE [1] 1 [1] FALSE FALSE FALSE [1] 2 [1] FALSE FALSE FALSE [1] 3 > But that strangely doesn't work. I must protest the implications of the above. i , as an iterator, is supposed take on values from b, but never is it equivalent to any of the values in b. The above works correctly for numbers or arrays of character strings. What's up with factors? Thanks for any help. -Frank
2009 Jul 07
3
r-project.org address blacklisted by anti-spam software
...quot;r-project.org" is blacklisted at uribl.swinog.ch resp. at antispam.imp.ch. I checked the list http://antispam.imp.ch/swinog-uri-rbl.txt [caution: long list] and indeed, there it was. Can anybody explain how or why the R project made its way onto the list? Is it reasonable to file a protest? --Hans Werner
2012 Apr 30
5
Different varable lengths
Hi! I'm trying to do a lm() test on three objects. My problem is that R protests and says that the variable lengths differ for one of the objects (Sweden.GDP.gap). But I have double checked that the number of observations are the same. All three objects should contain 9 observations but R only accepts 9 observations in two of the objects. The third must have 10! Very confusing...
2003 Dec 08
2
Character graphics
...-7 74 ************************************* -6 45 *********************** -5 13 ******* -4 6 *** -3 2 * -2 10 ***** -1 18 ********* 0 1 * BTW, Minitab 13 protests when you want to do this: MTB > gstd * NOTE * Character graphs are obsolete. * NOTE * Standard Graphics are enabled. Professional Graphics are disabled. Use the GPRO command to enable Professional Graphics. Has anyone tried to get similar unprofessional displays out o...
1999 Nov 11
2
tapply not simplifying to vector? (PR#320)
Hi, all. The help file for tapply says that if simplify is true, and the result of the calculation is always a scalar, then tapply will return a vector. Nonetheless: > t1 <- tapply(runif(10), rep(1:5, 2), mean) > is.vector(t1) [1] FALSE > is.array(t1) [1] TRUE > I have found this in version 0.65.1 on an SGI running Irix 6.5, and on a Mac running Linux-PPC. I've also
2014 Sep 13
1
vegan moved to GitHub and vegan 2.2-0 is coming (are you ready?)
...an be expressed by giving just the number of permutations on the command line. The functions using the new permutation scheme are adonis, anosim, anova.cca for CCA/RDA/dbRDA and hence also for ordistep etc., CCorA, envfit, mantel & mantel.partial, mrpp, mso, permutest.betadisper, permutest.cca, protest and simper. The change for functions is now complete, but same clean up and updating of documentation is still to be done. This is discussed in https://github.com/vegandevs/vegan/issues/31 - vegan 2.2-0 will also use parallel processing in several functions. This was already done in several functi...
2015 Feb 02
0
Another Fedora decision
...re is no rational reason. Got one? Lay it on me. Please include a description of the threat model where a password like byrnej123 should be allowed, which *is* allowed in EL7, as long as root is setting it and says ?Yes, I really am sure I want such a dreadfully easy to crack password.? > 5. Protesting there is evidently meaningless as well. While I?ve got the floor, I would like to encourage everyone to send mail to god at universe.org to protest tomorrow?s sunrise. Rationale: Melanoma is bad. > This change was not discussed Hmm, yes, let?s hold public committee hearings for every tech...