search for: mh

Displaying 20 results from an estimated 527 matches for "mh".

Did you mean: mhz
2008 Dec 09
2
assign()ing within apply
...ger_, NA_integer_, NA_integer_, NA_integer_, NA_integer_, NA_integer_, NA_integer_, NA_integer_, NA_integer_, NA_integer_, NA_integer_), tree = c(427L, 410L, 639L, 494L, 649L, 166L, 735L, 163L, 120L, 755L, 612L, 174L, 129L, 331L, 269L, 152L, 552L, 227L, 243L, 96L), spp = c("MH", "MST", "MH", "HE", "BE", "MH", "MH", "MH", "MH", "Or", "IW", "Or", "MH", "MH", "BY", "MH", "MH", "BE", "MH&...
2009 Jul 20
1
S4 method dispatch with inheritance
Hi, I'm trying to create a new S4 class (myMatrix) which for now just extends dgCMatrix (from package Matrix). Then I want to use "[" which is defined in Matrix. Out of the box with "[" (defined in Matrix) I lose the class information and the result is an object of class dgCMatrix. If I specify a "["-method for myMatrix, it is not used because a signature
2008 Sep 01
3
another histogram question
...bution is quite skewed and I simply don't want to see the long tail but still use the histogram plot). How can I do something like this? (The example does not work but I don't know why...) data <- rnorm(100) # as example, of course this is not skewed... h <- hist(data, plot=FALSE) mh <- 5 hh <- list(h$breaks[0:(mh+1)], h$counts[0:mh],h$intensities[0:mh],h$density[0:mh],h$mids[0:mh],h$xname,h$equidist) names(hh) <- names(h) plot(hh) Antje
2012 Dec 09
1
Fwd: samba_dnsupdate principal and TKEY unacceptable
.... But when I try to do "samba_dnsupdate --all-names" it fails with error: dns_tkey_negotiategss: TKEY is unacceptable The kerberos ticket being used by samba_dnsupdate shows follwoing principals: klist -c /tmp/tmp6cxfgY Ticket cache: FILE:/tmp/tmp6cxfgY Default principal: DB-SERVER$@BOM.MH.IN Service principal krbtgt/BOM.MH.IN DNS/db-server at BOM.MH.IN Whereas the dns.keytab shows following principals (repeated for multiple encryption algorithms) klist -k private/dns.keytab: DNS/db-server.bom.mh.in at BOM.MH.IN dns-DB-server at BOM.MH.IN Wireshark shows that samba_dnsupdate reques...
2003 May 20
1
How to use pakcage SEM
...ch is as follows to SEM: ### EQS ### /SPECIFICATION CAS=100; VAR=5 MAT=COR; ANA=COR; /EQUATIONS V1=*F1+E1; V2=*F1+E2; V3=*F1+*F2+E3; V4=**F1+*F2*E4; V5=*F2+E5; /VAR E1 TO E5=*; F1*1.0; F2=1.0; /COV E1,E2=*; F1,F2=*: /PRINT FIT ALL; /MATRIX ...... /END This is the converted SEM program. ### data.mh<-matrix(c( 1.00,0,0,0, 0, 0.38,1.00,0,0, 0, 0.52,0.28,1.00,0,0, 0.55,0.32,0.38,1.00,0, 0.36,0.40,0.48,0.31,1.00 ),ncol=5,byrow=T) model.mh<-matrix(c( 'F1 -> V1', 'a1',NA, 'F1 -> V3', 'a3',NA, 'F1 -> V4', 'a4',NA, 'F2 -> V2...
2011 May 28
2
Nested design
...ant to test. The problem is that I cannot find an appropriate test in R (I am a starter) and someone might give me a hand. This is what I have done: Across three sites (Site), I have laid out five transects (Trans)...meaning five transects in each sites. In each transect I have five Microhabitats (MH) which should be regarded as subplots (I think). In each transect, every MH has the same position (so they are not randomized). I now want to test the effect of Site and MH (nested in Trans) on my response variables. This is what I do now: model<-aov(Response~Site*MH+error(Trans/MH)) I get t...
2011 Jul 18
1
Multiple comparison test on selected contrasts
...lmer(log10(SrCa) ~ SitePos + (1 | Eel), data = Data1) Model.G.mct = glht(Model.G, linfct = mcp(SitePos = "Tukey"))summary (Model.G.mct) The following code creates the desired reduced set of contrasts but I have been unable to apply it correctly to the mct. contr = rbind("CR core - MH core" = c(1,0,0,-1,0,0),"CR core - CR edge" = c(1,0,-1,0,0,0), "CR core - CR EC" = c(1,-1,0,0,0,0,0),"CR edge - MH edge" = c(0,0,1,0,0,-1), "CR edge - CR EC" = c(0,-1,1,0,0,0),"CR EC - MH EC" = c(0,1,0,0,-1,0), "MH core - MH edge" = c...
2002 Nov 25
3
How top print intermediate values from inside a function?
Hi: In R, how do I display some intermediate results calculated in a "for" loop within a function? For example, in the attached code, how do I get it to print the intermediate variable "mh.new" for each simulation, when I call the function "MHsim.ind"? thanks for any help, Ravi. #################################################################### MHsim.ind <- function(nsim=1000,start=0,spread=1,likfn=bpllkd){ # Independence Metropolis algorithm with candidate den...
2002 Aug 22
1
Samba 2.2.5 DC: problem with groups
Hello, I wondered how domain groups are handled with Samba (2.2.5): I set up a Samba DC and have serveral XP clients. On the Samba machine I greated a group named "ntadmins" and put the following line in my smb.conf: domain admin group = @ntadmins On of my domain admins is user "wojtek" which has the primary group "user" but is also memeber of the
2012 Feb 23
1
multhist weird behavior/ xlabels wrong
Hi, I found some weird behavior of the function multhist in the plotrix package and I would like to ask you about it: so, it works well to put two histograms next to each other, but I don't understand the breaks… so for example, library(plotrix) mh <- list(rnorm(200, mean=100, sd=10), rnorm(200, mean=100, sd=10)) multhist(mh) #produces a plot with 12 bins multhist(mh, breaks=2) #produces a plot with 2 bins, as expected multhist(mh, breaks=3) #produces...
2008 Sep 17
1
ANOVA contrast matrix vs. TukeyHSD?
...summarized as follows: This is my model (I think it's right, ignoring interaction terms for simplicity): > lm1 ~ aov (centroid ~ gender + cond + treatment/replic, data = parents) The treatments are: > levels (parents$treatment) [1] "c" "h" "mc" "mh" "s" "t" I only care about a few of the pairwise comparisons between the levels of "treatment", as only certain contrasts are scientifically interesting: c vs. h mh vs. mc (c + h) vs. s [I would like to compare the mean of c and h (my controls) to s and t)...
2011 Mar 30
0
Plot an ols() call from Design
...sak s low unround back long 12022 1 HY 19 1 sak s low unround back long 12022 0 HY 19 2 sak s low unround back long 12022 0 HY 19 3 sak s low unround back long 12022 0 HY 19 4 sak s low unround back long 12022 0 HY 19 5 sak s low unround back long 12022 0 HY 19 6 sak s low unround back long 12022 0 MH 37 1 sak s low unround back long 12022 1 MH 37 2 sak s low unround back long 12022 1 MH 37 3 sak s low unround back long 12022 1 MH 37 4 sak s low unround back long 12022 1 MH 37 5 sak s low unround back long 12022 1 MH 37 6 sak s low unround back long 12022 1 MH 39 1 sak s low unround back long 12...
2005 Jan 11
2
MIT Kerberos and OpenSSH
Howdie, Is there a way to get the default BSD 5.3 openssh to compile against the MIT kerberos libraries? I have set NO_KERBEROS=yes in /etc/make.conf so that the heimdal kerberos is not built, and rebuilt world, then installed /usr/ports/security/krb5 and rebuilt world again. sshd is however not being built against MIT at all. [root@foobar] ~ # ldd /usr/sbin/sshd /usr/sbin/sshd:
1997 Jul 29
0
Fwd: Buffer Overrun in ruserpass() in MH and NMH (fwd)
------- =_aaaaaaaaaa0 Content-Type: text/plain; charset="us-ascii" Content-ID: <14008.870179829.1@erehwon.bmc.com> See attached. Red Hat Linux package mh-6.8.3-13.i386.rpm installs the inc and msgchk programs as follows: -rwsr-sr-x- root mail 72628 Oct 17 16:57 /usr/bin/mh/inc -rwsr-xr-x- root root 52536 Oct 17 16:57 /usr/bin/mh/msgchk Hal ------- =_aaaaaaaaaa0 Content-Type: message/rfc822 X-Envelope-From: nmh-workers-...
2008 Feb 12
3
help with bwplot
...ex. Are there any easy ways to do this in R? Ageclass Scale Mean Sex 1 21-40 BP 40.26667 female 2 41-60 BP 34.10714 female 3 61-79 BP 37.30000 female 4 21-40 GH 30.25000 female 5 41-60 GH 39.00926 female 6 61-79 GH 49.30000 female 7 21-40 MH 56.53333 female 8 41-60 MH 62.42857 female 9 61-79 MH 72.72727 female 10 21-40 PF 25.86111 female 11 41-60 PF 42.42063 female 12 61-79 PF 52.17172 female 13 21-40 RE 38.09524 female 14 41-60 RE 42.85714 female 15 61-79 RE 42.42424 female 16 21-40...
2008 Mar 31
1
Reorder the x-axis using lattice
Dear list, Is there a way to reorder the xaxis using lattice. Using the following data, the x-axis is ordered as BP GH MH PF RE RP SF VT but I would like the x-axis to be ordered as PF RP BP GH VT SF RE MH. Kön Skalor Tillfälle Medelvärde 1 Kvinnor BP 1-inskrivning 36.45283 2 Kvinnor GH 1-inskrivning 38.62255 3 Kvinnor MH 1-inskrivning 62.88889 4 Kvinnor PF 1-inskrivning...
2005 Mar 31
2
new to dovecot, dealing with MH foders
...I found no search for the archives. I can no longer put of moving away from UW-IMAP. Dovecot certainly seems to be the right choice, but I am having problems getting it to do what I need it to for all my mail. The machine is running the dist version, 0.99.12. I have a system mailbox and a large MH mail tree (~25K messages.) I saw that dovecot didn't support mh trees like UW did. It looked like maildir would be a good common target. So I found a script that would convert the mbox to maildir and have adjusted postfix, and that all works fine. Then I found mh2maildir, and ran it over my...
2012 Jun 20
2
array complexity for the MH test
...levels how practical it is to work that into that array structure above? Can one not have a different data.frame structure that the test likes as well, or should we use another package (like the meta package)? -- View this message in context: http://r.789695.n4.nabble.com/array-complexity-for-the-MH-test-tp4633999.html Sent from the R help mailing list archive at Nabble.com.
2014 Mar 28
1
Best zwave controller for MH
...Details.asp?EdpNo=8930107&sku=VEP-STARTER1 but this looks different than the vera lite green & white: http://www.amazon.com/Mi-Casa-Verde-VeraLite-Controller/dp/B007005364/ref=cm_cr_pr_product_top? and maybe there are more zwave controllers. Can someone (who is actually running Zwave+MH) comment on what the best model of controller to buy is? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20140328/15693875/attachment.html>
1998 Dec 02
4
Net help analyzing logfiles: Printer permissions in Domain
...bp-fs00 | interfaces = 192.168.10.10/255.255.255.0 | |[dasiPDruck] | comment = Protokoll-"Drucker" f?r Datensicherung | path = /var/spool/samba | read only = true | writeable = no | printable = true | public = no | browseable = yes | print command = cat %s | mail -s Druckausgabe mh | valid users = mh asback |Added interface ip=192.168.10.10 bcast=192.168.10.255 nmask=255.255.255.0 |1998/12/01 19:40:37 loaded services |1998/12/01 19:40:37 becoming a daemon |bind succeeded on port 139 |waiting for a connection |Initialised IPC area of size 102400 |1998/12/01 19:40:41 changed...