Conservativism? [Regulatives / Guidelines]
Hi to all simulants!
I modified your code according to Martin's suggestion. I tested three scenarios (10 000 sims each):
Is this correct – or did I bungle the code?
I modified your code according to Martin's suggestion. I tested three scenarios (10 000 sims each):
- CVT=CVR1=CVR2=30% (conventional setup)
- CVT=CVR2=30%, CVR1=50%
- CVT=CVR1=30%, CVR2=50%
require(nlme)
set.seed(12041958) # keep this line to compare results only
sims <- 10000 # <- no of sims here
# T/R1 = 95%, T/R2 = 105.26%
mean1 <- 1.00; cv1 <- mean1/100*30 # <- means & CVs here
mean2 <- 0.95; cv2 <- mean2/100*30 # <-
mean3 <- 1/0.95; cv3 <- mean3/100*30 # <-
seq1 <- as.factor(rep(rep(1:6, each = 3), 2))
sub1 <- as.factor(rep(1:12, each = 3))
per1 <- as.factor(rep(1:3, 12))
trt1 <- as.factor(rep(c(1,2,3, 2,3,1, 3,1,2, 1,3,2, 2,1,3, 3,2,1), 2))
# massacrating out everything related to R2
# means that when T was before R1 we now have a seq 1 otherwise a seq 2
sub2 <- as.factor(rep(1:12, each = 2))
per2 <- as.factor(rep(1:2, 12))
trt2 <- as.factor(rep(c(1,2, 2,1, 1,2, 1,2, 2,1, 2,1), 2))
seq2 <- as.factor(rep(c(1,1, 2,2, 1,1, 1,1, 2,2, 2,2), 2))
# see Martin's post: http://forum.bebac.at/mix_entry.php?id=5272
meanl1 <- log(mean1)-0.5*log(cv1^2+1)
meanl2 <- log(mean2)-0.5*log(cv2^2+1)
meanl3 <- log(mean3)-0.5*log(cv3^2+1)
sdl1 <- sqrt(log(cv1^2+1))
sdl2 <- sqrt(log(cv2^2+1))
sdl3 <- sqrt(log(cv3^2+1))
nConservative <- 0; nAntiConservative <- 0
for (iter in 1:sims) # T is 1, R1 is 2 and R2 is 3
{
y1 = rlnorm(n=36, meanlog=meanl1, sdlog=sdl1)
for (i in 1:36) if (trt1[i]==2) y1[i]=rlnorm(n=1, meanlog=meanl2, sdlog=sdl2)
for (i in 1:36) if (trt1[i]==3) y1[i]=rlnorm(n=1, meanlog=meanl3, sdlog=sdl3)
ElMaestrosMixedModel <- lme(y1 ~ 0 + seq1 + per1 + trt1, random = ~1|sub1)
Smm <-ElMaestrosMixedModel$sigma
# do the pruning!
y2 <- y1
length(y2) <- 24
j <- 0
for (i in 1:36) if (trt1[i] != 3)
{ j <- j+1;
y2[j] <- y1[i]
}
HSLinearModel <- lm(y2 ~ 0 + seq2 + sub2 %in% seq2 + per2 + trt2) # EMA?!
Slm <- summary(HSLinearModel)$sigma
if (Slm<Smm) nAntiConservative <- nAntiConservative + 1
if (Slm>=Smm) nConservative <- nConservative + 1
}
cat(" Conservative = ", 100*nConservative/sims, "%\n","Anticonservative = ", 100*nAntiConservative/sims, "%\n Based on",sims,"simulated BE studies; n=12 each.","\n")
Is this correct – or did I bungle the code?

T R1 R2 Cons. Anticons.
Sc.1 30 30 30 44.05% 55.95%
Sc.2 30 50 30 63.42% 36.58%
Sc.3 30 30 50 14.11% 85.89%
—
Dif-tor heh smusma 🖖🏼 Довге життя Україна!![[image]](https://static.bebac.at/pics/Blue_and_yellow_ribbon_UA.png)
Helmut Schütz
![[image]](https://static.bebac.at/img/CC by.png)
The quality of responses received is directly proportional to the quality of the question asked. 🚮
Science Quotes
Dif-tor heh smusma 🖖🏼 Довге життя Україна!
![[image]](https://static.bebac.at/pics/Blue_and_yellow_ribbon_UA.png)
Helmut Schütz
![[image]](https://static.bebac.at/img/CC by.png)
The quality of responses received is directly proportional to the quality of the question asked. 🚮
Science Quotes
Complete thread:
- Anticonservativism?! ElMaestro 2010-02-06 17:10 [Regulatives / Guidelines]
- Conservativism?Helmut 2011-11-03 21:12
- In hindsight... ElMaestro 2011-11-03 21:43
- In hindsight... Helmut 2011-11-04 01:56
- In hindsight... ElMaestro 2011-11-04 08:41
- rlnorm simulates what? d_labes 2011-11-04 09:40
- Oops. Helmut 2011-11-04 16:05
- Oops. ElMaestro 2011-11-04 16:22
- Simulation of intra-subject variability d_labes 2011-11-07 11:16
- Simulation of intra-subject variability ElMaestro 2011-11-08 11:02
- Simulation of intra-subject variability d_labes 2011-11-07 11:16
- Oops. Oops. d_labes 2011-11-25 13:54
- Another Oops. Helmut 2011-11-25 14:23
- Oops. ElMaestro 2011-11-04 16:22
- Oops. Helmut 2011-11-04 16:05
- In hindsight... Helmut 2011-11-04 01:56
- In hindsight... ElMaestro 2011-11-03 21:43
- Simul Ants questions d_labes 2011-11-04 15:46
- Simul Ants questions ElMaestro 2011-11-04 16:06
- Simul Ants questions Helmut 2011-11-04 16:09
- Liberal Conservatives d_labes 2011-11-08 11:31
- Liberal Conservatives martin 2011-11-08 20:50
- Liberal Conservatives Helmut 2011-11-08 22:56
- intra-subject correlation martin 2011-11-09 09:01
- intra-subject correlation Helmut 2011-11-25 17:16
- intra-subject correlation martin 2011-11-09 09:01
- Liberal Conservatives Helmut 2011-11-08 22:56
- Liberal Conservatives martin 2011-11-08 20:50
- Conservativism?Helmut 2011-11-03 21:12