search for: subd

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

Did you mean: sub
2009 Aug 28
1
how to explain the interaction terms regarding "treatment contrast" of lm model
...lue Pr(>|t|) (Intercept) 3.5062 0.3278 10.696 9.98e-13 *** groupgroup2 1.3253 0.4636 2.859 0.00703 ** groupgroup3 2.7268 0.4636 5.882 9.98e-07 *** subb 0.1965 0.4636 0.424 0.67411 subc 1.3280 0.4636 2.865 0.00693 ** subd 1.3133 0.4636 2.833 0.00751 ** groupgroup2:subb 0.2188 0.6556 0.334 0.74052 groupgroup3:subb 0.2187 0.6556 0.334 0.74060 groupgroup2:subc -0.2293 0.6556 -0.350 0.72851 groupgroup3:subc 0.2266 0.6556 0.346 0.73158 groupgroup2:subd 0.5044 0...
2007 May 17
4
bug or feature?
...; d= data.frame ( y=y, r1=r1 ); ## note: I am not attach()ing anything anywhere ## this should give me two results, which it does ahw.y= subset(d, d$y==1963); print(summary(ahw.y)); ## this should give me the same two results, which it does not. All 6 are included now. for (y in 1963:1963) { subd= subset(d, d$y==y); print(summary(subd)); } ## this should give me the same two results, which it does for (yr in 1963:1963) { subd= subset(d, d$y==yr); print(summary(subd)); } hope this helps. (if its a bother, please let me know and I won't post such emails anymore. would save me t...
2008 Feb 18
2
skip non-converging nls() in a list
...each of a large number of individuals using a 4-parameter logistic growth curve. 2. nlme does not converge with the random structure that I want to use. 3. nlsList does not converge for some individuals. 4. I decided to go around nlsList using: t(sapply(split(data, list(data$id)), function(subd){coef(nls(mass ~ SSfpl(age, A, B, xmid, scal), data = subd))})) 5. This does not converge either: 'Error in nls(y ~ cbind(1, 1/(1 + exp((xmid - x)/exp(lscal)))), data = xy, : singular gradient' 6. Would anyone know if I can get R to skip non-converging use of nls() so that I can...
2003 Dec 15
6
Secondary Groups and Group Mapping
...entries in the base!"). ---- Samba compilation performed using the flags: --with-ads --with-ldap --with-included-popt --with-winbind --with-winbind-auth-challenge --with-pam --with-ldapsam --with-acl-support ---- smb.conf Contains: ldap admin dn = "cn=smbldapuser,ou=user,dc=lan,dc=subd,dc=dom,dc=com" ldap server = globalsvr.lan.subd.dom.com ldap port = 8001 ldap suffix = "ou=idmap,dc=lan,dc=subd,dc=dom,dc=com" ldap ssl = no ldap filter = "(&(uid=%u) (objectclass=sambaAccount))" winbind separator = + idmap backend = ldap:ldap://globalsvr.lan.subd.dom.c...
2011 Jun 17
3
rle on large data . . . without a for loop!
I think need to do something like this: dat<-data.frame(state=sample(id=rep(1:5,each=200),1:3, 1000, replace=T,prob=c(0.7,0.05,0.25)),V1=runif(1,10,1000),V2=rnorm(1000)) rle.dat<-rle(dat$state) temp<-1 out<-data.frame(id=1:length(rle.dat$length)) for(i in 1:length(rle.dat$length)){ temp2<-temp+rle.dat$length[[i]] out$V1[i]<-mean(dat$V1[temp:temp2])
2008 Feb 15
2
lmList, tapply() and lm()
Howdee, *** I know that the lmList() function exists, yet I don't want to use it. *** Would anyone be kind enough to tell how I can apply the function lm() to each level of a given factor so to obtain the intercept and slope for each factor level within a matrix? For instance, suppose a dataframe containing 3 variables: id, x and y. I want to compute the function lm() for each level
2010 Dec 29
2
subset question
Hi, I'm having a problem with a step that should be pretty simple. I have a dataframe, d, with column names : gene s1 s2 s3. The column "gene" stores an Id; the rest of the columns store intensity data. I would like to extract the rows for gene Ids i1, i2, i3 ( I know a priori that those rows exist). So I do this: subset(d, gene %in% c(i1, i2, i3)). This does not give me the
2012 Mar 27
1
[PATCH] tools/configure: add options to pass EXTRA_CLFAGS
...'s own protocol? # GIT''s protocol is faster and more robust, when it works at all (firewalls # may block it). We make it the default, but if your GIT repository downloads diff -r d9e6e8632bb6 -r 9c6337771520 tools/Makefile --- a/tools/Makefile +++ b/tools/Makefile @@ -122,6 +122,7 @@ subdir-all-qemu-xen-traditional-dir subd set -e; \ $(buildmakevars2shellvars); \ cd qemu-xen-traditional-dir; \ + env CFLAGS="$(EXTRA_CFLAGS_QEMU_TRADITIONAL)" \ $(QEMU_ROOT)/xen-setup $(IOEMU_CONFIGURE_CROSS); \ $(MAKE) install @@ -146,6 +147,7 @@ subdir-all-qemu-xen-dir subd...
2016 Aug 22
4
How to describe the RegisterInfo?
...th, type, addrMode, hStride, vStride) to describe a register. I have attached my first version RegisterInfo.td. And I also have a question about the attached RegisterInfo.td file. Do I have to define different SubRegIndex like below to make TableGen works correctly? foreach Index = 0-15 in { def subd#Index :SubRegIndex<32, !shl(Index, 5)>; //used as SubRegIndex when declaring gpr_d_simd8 def subw#Index: SubRegIndex<16, !shl(Index, 4)>; //used as SubRegIndex when declaring gpr_w_simd8 ... } If anything I am not saying clear, just reply the mail. Thanks for any help! Thanks! Ruili...
2016 Aug 23
2
How to describe the RegisterInfo?
Yes, the arch is just as you said, something like AMD GPU, but Intel GPU don't have separate register file for 'scalar/vector'. In fact my idea of defining the register tuples was borrowed from SIRegisterInfo.td in AMD GPU. But seems that AMD GPU mainly support i32/i64 register type, while Intel GPU also support byte/short register type. So I have to start defining the registers from
2003 Dec 01
0
No subject
...the same name will be disallowed? I hope you can help me guys. This problem has bugged me for a long time already... Thanks! ----------------------- Spawn - The Scourge of the Damned Chris G Haravata IT Resource Officer-Backend Asia Pacific College (www.apc.edu.ph) #3 Humabon Place, Magallanes Subd., Makati City Cell No: 0916 3500465 Tel No 8529232 loc 402 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.277 / Virus Database: 146 - Release Date: 9/5/2001 Return-Path: <nik39@gmx.net> Delivered-To: samba@lists.samba....