Displaying 3 results from an estimated 3 matches for "fake2".
Did you mean:
fake
2011 Sep 05
1
Power analysis in hierarchical models
...ach=24),3)
Rep= (rep(rep(rep(c("1","2","3"),each=8),2),3))
Ind= (rep(rep(rep(c(1:8),3),2),3))#not required for stats
#Fake data (based on pilot studies), only showing a single main effect
(bleach)
Growth=c( rnorm(48,3.27,0.77),rnorm(48,3.21,0.77),rnorm(48,3.64,1.17))
fake2=data.frame(Bleach,Temp,Rep,Ind,Growth);head(fake2)
#generate factor level for lmer as per Crawley, page 649
fake2$rep=fake2$Bleach:fake2$Temp:fake2$Rep#rep is used in the lmer
model
with(fake2,table(rep))#check that each rep contains 8 measurements
# run alternative (?equivalent) models
model1=ao...
1997 Apr 17
0
R-alpha: fitted = 0 of 1 in logistic regression
...ed" take a double r?
> fake.age<-runif(500,0,50)
> fake.menarche<-rbinom(500,1,.99999 *(fake.age > 15) + .99999 * (fake.age > 10 & fake.age <= 15)/5 * (fake.age - 10)+.000005)
> glm(fake.menarche~fake.age,binomial)
Error: fitted probabilities of 0 or 1 occured
> fake2.age<-fake.age[fake.age<25&fake.age>5]
> fake2.menarche<-fake.menarche[fake.age<25&fake.age>5]
> glm(fake2.menarche~fake2.age,binomial)
Call: glm(fake2.menarche ~ fake2.age, binomial)
Coefficients:
(Intercept) fake2.age
-15.1061 1.2011
Degrees of...
2015 Oct 26
8
[Bug 2483] New: use AI_ADDRCONFIG flag for getaddrinfo() hints on Solaris
...ilds ok.
Unit testing on Solaris:
------------------------
# Setup. Remove IPv6 address:
ipadm delete-addr net0/v6
# Watch for DNS requests out:
snoop port 53 <local-addr> | grep fake
# AAAA means IPv6 lookups are done.
# Test connectivity (change hostname every time to avoid caching):
ssh fake2
# Cleanup. Eventually enable IPv6 addresses again:
ipadm create-addr -T static -a <original-address> net0/v6
--
You are receiving this mail because:
You are watching the assignee of the bug.