search for: brown

Displaying 20 results from an estimated 2699 matches for "brown".

2010 Dec 25
4
2 Ethernet cabling question
...lways clear for me [sorry for posting to this list :\]: ############################################################################################## Q1) when cabling, is the color order important? like: straight cabling: A side: white-orange, orange, white-green, blue, white-blue, green, white-brown, brown B side: white-orange, orange, white-green, blue, white-blue, green, white-brown, brown could be eg.: like this?? A side: white-orange, brown, white-blue, green, white-green, blue, white-brown, orange B side: white-orange, brown, white-blue, green, white-green, blue, white-brown, orange ###...
2011 Feb 18
3
How to change dataframe to tables
The data is in the attachment. What I wanna get is: , , Sex = Male Eye Hair Brown Blue Hazel Green Black 32 11 10 3 Brown 53 50 25 15 Red 10 10 7 7 Blond 3 30 5 8 , , Sex = Female Eye Hair Brown Blue Hazel Green Black 36 9 5 2 Brown 66 34 29 14 Red 16 7 7 7 Blon...
2008 Feb 29
3
Replace a list of values in data frame
...rs, I am sorry if I ask for something that has been asked before, however, I still could not solve my little problem by consulting the previous thread on this topic: I would like to replace several values in a data frame, such as in: colorful subject response 1 me black 2 me brown 3 you red 4 me black 5 you brown read in with read.table() I would like to replace both "black" and "brown" by "dark". What I have tried was: ToBeReplaced=c("black","brown") Replacement="dark" test1&lt...
2010 Sep 19
1
odds ratios for n-way tables: seeking an *apply-able method
...t;- f[i:(i+1), j:(j+1)] res[i,j] <- OR2x2(tab, log=log) } } for (j in 1:(C-1)) { colnames(res)[j] <- paste(colnames(f)[j:(j+1)], collapse=":") } res } ### Examples > (HE <- apply(HairEyeColor, 1:2, sum)) Eye Hair Brown Blue Hazel Green Black 68 20 15 5 Brown 119 84 54 29 Red 26 17 14 14 Blond 7 94 10 16 > > OR(HE) Brown:Blue Blue:Hazel Hazel:Green Black:Brown 0.87547 -0.1542 0.4769 Brown:Red -0.07658 0.2477 0.6...
2011 Dec 12
2
Colours for sunflowerplot
...,"Sep","Oct","Nov"," Dec"), tick = TRUE, line = NA) legend(7, 12.5, legend = c("Grp1"," Grp2"," Grp3"," Grp4"," Grp5"," Grp6"," Grp7"," Grp8"), col = c("blue","brown","orange","green","red","lightblue","purple","pink"), pch = 19, bty = "n") For comparison of where colours should lie - normal plot: #add random number to make all points different so that they dont overplot a <-...
2006 Sep 15
1
Custom analyzer not invoked?
...break if n == nil puts n.to_s end return Analysis::LowerCaseFilter.new(Analysis::StandardTokenizer.new(str)) end end puts ''== Adding document to index...'' index = Index::Index.new(:analyzer => MyAnalyzer.new()) index << { :content => "The quick brown fox" } index << { :content => "The cow jumps over the moon" } puts ''== Searching Brown...'' index.search_each(''content:Brown'') do |doc, score| puts "Document #{doc} found with a score of #{score}" end puts ''== Searchi...
2010 Oct 03
1
plyr: a*ply with functions that return matrices-- possible bug in aaply?
...lt } For example, by hand (or with a loop) I can calculate the pieces and combine them as I want using abind(): > # apply separately to strata > t1<-fun2way(HairEyeColor[,,1]) > t2<-fun2way(HairEyeColor[,,2]) > > library(abind) > abind(t1, t2, along=3) , , 1 Brown Blue Hazel Black 32 11 10 Brown 53 50 25 Red 10 10 7 , , 2 Brown Blue Hazel Black 36 9 5 Brown 66 34 29 Red 16 7 7 alply() gives me what I want, but with the strata as list elements, rather than an array > library(plyr) >...
2012 Jan 05
2
Problem with axes in a plot of Kaplan-Meier
...ome of the graphics parameters with the command par() (I did not know that changes with this command are permanent), now when I made a plot of the survival Kaplan-Meier function, the Y axis does not start at 1, and the X axis does starts at 0. The commands that I use are: library(survival) BROWN.SPV = Surv(BROWN$TEMPS, BROWN$DEF) BROWN.KM = survfit(BROWN.SPV ~ 1) plot(BROWN.KM$time, BROWN.KM$surv, type="s") How can I restore previous graphics parameters? Is there a file that would delete to restore the initial settings (already use R in debian squeeze)? Thanks a lot. AG...
2010 Aug 30
2
Brown-Forsythe test of equality of MEANS
Dear friends, two years ago (as I found on the web) Paul sent the following message but I was not able to find if he got an answer. Today I have the same question and it would be great if I could find out that this test has been implemented (somehow) in R. Please do not confuse it with the Brown-Forsythe test of equality of variances. Thank you: I've been searching around for a function for computing the Brown-Forsythe F* statistic which is a substitute for the normal ANOVA F statistic for when there are unequal variances, and when there is evidence of non-normality. A couple of other...
2008 Mar 27
2
Proper noun stemming
...ad a solution for the following problem. I user QueryParser to stem my documents before adding them to a database. During the stemming process I would like to find a way of keeping proper nouns that span two or more words together as a phrase. For example "New York" or "Gordon Brown" or "Prime Minister" get spilt up. I see the STEM_SOME allows some operators, but I can't see how these might help in this situation. Any ideas would be appreciated as always. Many thanks Colin
2011 Jul 25
1
Ouch - brown, hansen error
Hi I'm trying to use ouch's hansen and brown functions but I get the error: > brown(logflatnodes,archotreeouch) Error in backsolve(l, x, k = k, upper.tri = upper.tri, transpose = transpose) : NA/NaN/Inf in foreign function call (arg 1) and with hansen also: Error in optim(par = c(sqrt.alpha, sigma), fn = function(par) { : functio...
2006 Dec 01
3
Make many barplot into one plot
Dear all, ## I have 4 tables like this: satu <- array(c(5,15,20,68,29,54,84,119), dim=c(2,4), dimnames=list(c("Negative", "Positive"), c("Black", "Brown", "Red", "Blond"))) dua <- array(c(50,105,30,8,29,25,84,9), dim=c(2,4), dimnames=list(c("Negative", "Positive"), c("Black", "Brown", "Red", "Blond"))) tiga <- array(c(9,16,26,68,12,4,84,12)...
2003 Dec 02
4
John Brown from Chagres!
Sorry to everyone on the list, but for some reason this is the only reliable way to get hold of John. John Brown of Chagres Technologies, please contact me! I have been trying for weeks now to get hold of you via email and phone after wire transfering money into your account for the Grandstream phones we ordered, but so far I have not had a single response, nor have the phones arrived! Please contact me ASA...
2015 Dec 03
2
7.2 kernel panic on boot
Duncan Brown wrote: > On 03/12/2015 17:00, m.roth at 5-cent.us wrote: >> Duncan Brown wrote: >>> On 03/12/2015 14:29, Leon Fauster wrote: >>>> Am 03.12.2015 um 15:06 schrieb Duncan Brown <centos2 at duncb.co.uk>: >>>>> On 03/12/2015 13:54, Jonathan Billings wro...
2017 Aug 06
3
SPSS R Factor v2.4.2
...Factors, corpcor, ICS, R.utils. set printback off. Error in library(polycor) : there is no package called 'polycor' This means the very good utility does not run in the way I have installed both R and SPSS Does anyone know what I've done wrong and how to overcome this? Prof. Gavin T L Brown, PhD Director Quantitative Data Analysis and Research Unit Faculty of Education & Social Work The University of Auckland Tel: +64 9 3737599 ext. 48602 Mob: +64 22 108 7253 Honorary Professor, Dept. of Curriculum & Instruction, Education University of Hong Kong Affiliated Professor, Dept. of...
2017 May 05
1
lm() gives different results to lm.ridge() and SPSS
...ponds to the interaction term. Am I missing something? Is there a way to perform the regression with the interaction in SPSS without computing the interaction as a separate variable? Best, Nick ----- Original Message ----- From: "John Fox" <jfox at mcmaster.ca> To: "Nick Brown" <nick.brown at free.fr>, "peter dalgaard" <pdalgd at gmail.com> Cc: r-devel at r-project.org Sent: Friday, 5 May, 2017 8:22:53 PM Subject: Re: [Rd] lm() gives different results to lm.ridge() and SPSS Dear Nick, On 2017-05-05, 9:40 AM, "R-devel on behalf of N...
2004 Jun 21
8
Busy message
...which is specified in the sip.conf, but the phone is not connected, Asterisk gives the message "The user at Extension XXX is on the phone ...." Shouldn't the message be the unavailable message? Is there something wrong with my set up or is this a "bug" with Asterisk? Simon Brown
2016 Aug 05
4
Fwd: Re: Encrypt /decrypta file with ssh keys.
...ionality "out of the box", I think there would be a few happy campers (at least two, anyways). -------- Forwarded Message -------- Subject: Re: Encrypt /decrypta file with ssh keys. Date: Fri, 5 Aug 2016 17:24:35 +0100 From: Alex Bligh <alex at alex.org.uk> To: Colin Leavett-Brown <crlb at uvic.ca> CC: Alex Bligh <alex at alex.org.uk> Colin, > On 5 Aug 2016, at 17:03, Colin Leavett-Brown <crlb at uvic.ca> wrote: > > Hi Alex, I think this should be part of Openssh. Do you want to try the wrapper? I've attached the code and it does exactly w...
2004 Aug 25
3
Fax detect
...8:41 NOTICE[1112745536]: chan_zap.c:3989 zt_read: Fax detected, but no fax extension extensions.conf has: [default] exten => fax,1,Hangup exten => fax,2,Congestion exten => fax,102,Congestion exten => f,1,Hangup exten => f,2,Congestion exten => f,102,Congestion Any ideas? Simon Brown
2004 Jun 21
2
Welch-JM-Test or Brown-Forsythe-Test in R?
...ay.test do what you want? Hope this helps, Matt Wiener -----Original Message----- From: r-help-bounces at stat.math.ethz.ch [mailto:r-help-bounces at stat.math.ethz.ch] On Behalf Of Sven Hartenstein Sent: Monday, June 21, 2004 3:23 PM To: r-help at stat.math.ethz.ch Subject: [R] Welch-JM-Test or Brown-Forsythe-Test in R? Hi, I want to test mean differences of > 2 groups with heterogenous variances and wonder whether Welch-JM-Test and/or Brown-Forsythe-Test are available in R. (These two are the ones I found in the literature and SPSS provides, I'm open for alternatives.) Any help apr...