Last updated: 2021-02-06
Checks: 7 0
Knit directory: exp_evol_respiration/
This reproducible R Markdown analysis was created with workflowr (version 1.6.2). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.
Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.
Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.
The command set.seed(20190703)
was run prior to running the code in the R Markdown file. Setting a seed ensures that any results that rely on randomness, e.g. subsampling or permutations, are reproducible.
Great job! Recording the operating system, R version, and package versions is critical for reproducibility.
Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.
Great job! Using relative paths to the files within your workflowr project makes it easier to run your code on other machines.
Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility.
The results in this page were generated with repository version 25528a3. See the Past versions tab to see a history of the changes made to the R Markdown and HTML files.
Note that you need to be careful to ensure that all relevant files for the analysis have been committed to Git prior to generating the results (you can use wflow_publish
or wflow_git_commit
). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated:
Ignored files:
Ignored: .DS_Store
Ignored: .Rhistory
Ignored: .Rproj.user/
Untracked files:
Untracked: data/1.eclosion_wide.csv
Untracked: figures/desiccation.pdf
Untracked: figures/eclosion.pdf
Untracked: figures/starvation.pdf
Unstaged changes:
Modified: analysis/resistance.Rmd
Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.
These are the previous versions of the repository in which changes were made to the R Markdown (analysis/juvenile_development.Rmd
) and HTML (docs/juvenile_development.html
) files. If you’ve configured a remote Git repository (see ?wflow_git_remote
), click on the hyperlinks in the table below to view the files as they were in that past version.
File | Version | Author | Date | Message |
---|---|---|---|---|
Rmd | 25528a3 | MartinGarlovsky | 2021-02-06 | wflow_publish(“analysis/juvenile_development.Rmd”) |
html | 709456c | Martin Garlovsky | 2021-01-18 | Build site. |
Rmd | c2d846f | Martin Garlovsky | 2021-01-18 | wflow_publish(c(“analysis/juvenile_development.Rmd”, “analysis/resistance.Rmd”, |
html | d19a7e6 | lukeholman | 2020-12-18 | Build site. |
Rmd | a0c557c | lukeholman | 2020-12-18 | new title |
html | 41d232f | lukeholman | 2020-12-18 | Build site. |
html | 6861115 | lukeholman | 2020-12-18 | Build site. |
html | 0d5bcc9 | lukeholman | 2020-12-18 | Build site. |
html | 989e86f | lukeholman | 2020-12-18 | Build site. |
Rmd | 5a81a83 | lukeholman | 2020-12-18 | new menu |
Rmd | 96d1188 | Martin Garlovsky | 2020-12-13 | MDG commit |
html | 96d1188 | Martin Garlovsky | 2020-12-13 | MDG commit |
Rmd | 7d4b609 | Martin Garlovsky | 2020-12-05 | MDG commit |
html | 7d4b609 | Martin Garlovsky | 2020-12-05 | MDG commit |
html | df61dde | Martin Garlovsky | 2020-12-04 | MDG commit |
Rmd | 0714753 | Martin Garlovsky | 2020-12-04 | workflowr::wflow_git_commit(all = T) |
Rmd | 3fdbcb2 | lukeholman | 2020-11-30 | Tweaks Nov 2020 |
library(tidyverse)
library(ggridges)
library(coxme)
library(lme4)
library(nlme)
library(brms)
library(tidybayes)
library(kableExtra)
library(knitrhooks) # install with devtools::install_github("nathaneastwood/knitrhooks")
output_max_height() # a knitrhook option
options(stringsAsFactors = FALSE)
# load eclosion data
eclosion_wide <- read.csv("data/1.eclosion_wide.csv")
# convert data to 'long' format
eclosion_long <- reshape2::melt(eclosion_wide, id.vars = "DAY")
# add ID columns
eclosion_long$YEAR <- factor("2015")
eclosion_long$variable <- paste(eclosion_long$variable, eclosion_long$YEAR, sep = "_")
eclosion_long$ID <- gsub(pattern = "_m|f_", replacement = "", x = eclosion_long$variable)
# calculate days to eclosion starting from seeding day
eclosion_long <- eclosion_long %>%
separate(variable, c("LINE", "SEED", "VIAL", "SEX", "YEAR")) %>%
mutate(SEED_DAY = case_when(SEED == 'A' ~ "2015-7-20",
SEED == 'B' ~ "2015-7-21",
SEED == 'C' ~ "2015-7-22"),
START_DAY = case_when(SEED == 'A' ~ "2015-8-01",
SEED == 'B' ~ "2015-8-02",
SEED == "C" &
LINE == "M1"| LINE == "M2"| LINE == "M3"| LINE == "M4" ~ "2015-8-03",
TRUE ~ "2015-8-04"),
DAY_ZERO = as.numeric(as.Date(START_DAY) - as.Date(SEED_DAY)),
DAY = DAY + DAY_ZERO)
# remove rows where no flies eclosed
eclosion_long <- subset(eclosion_long, value>0)
# add event
eclosion_long$EVENT <- 1
# calulate number not eclosed for each vial (out of 100)
uneclosed <- as.data.frame(eclosion_long %>%
group_by(ID, LINE, SEED, VIAL) %>%
summarise(SEX = "fm",
DAY = 21,
eclosing = 100 - sum(value),
EVENT = 0,
YEAR = "2015"))
# calculate proportion eclosed of each sex to give weights to uneclosed
p <- eclosion_long %>% group_by(SEX) %>% summarise(S = sum(value))
prop.male <- p$S[2]/(p$S[2]+p$S[1])
prop.female <- p$S[1]/(p$S[2]+p$S[1])
# assign sex to uneclosed in each vial based on those that have eclosed... i.e. slighly more females already eclosed
uneclosed.male <- mutate(uneclosed,
SEX = "m", eclosing = round(uneclosed$eclosing*prop.female))
uneclosed.female <- mutate(uneclosed,
SEX = "f", eclosing = round(uneclosed$eclosing*prop.male))
colnames(eclosion_long)[7] <- "eclosing"
# reorder columns
eclosion_long <- eclosion_long %>% select(ID, DAY, SEX, LINE, SEED, VIAL, YEAR, eclosing, EVENT)
# bind eclosed data to calculated uneclosed
eclosion_long <- rbind(eclosion_long, uneclosed.male, uneclosed.female)
eclosion_long <- eclosion_long[order(eclosion_long$ID, eclosion_long$SEX), ]
# add treatment variable
eclosion_long$TRT <- factor(substr(eclosion_long$ID, 1, 1))
# remove vials seeded with more than 100 larvae
#unique(eclosion.dat[which(eclosion.dat$eclosing < 0), "ID"]) # 4 vials overseeded
eclosion.dat.trim <- eclosion_long %>%
filter(ID %in% eclosion_long[which(eclosion_long$eclosing < 0), "ID"] == FALSE)
# expand data frame so each row is a single fly
ecl.dat <- reshape::untable(eclosion.dat.trim[ ,c(1:7, 9, 10)],
num = eclosion.dat.trim[, 8])
# load wing length data
wing_length <- read.csv("data/1.wing_length.csv") %>%
filter(Side == 'L') %>%
# scale wing vein length to make effect size comparisons with other data sets?
mutate(Length = as.numeric(scale(Length)))
# add replicate
wing_length$LINE <- paste0(wing_length$Treatment, substr(wing_length$Rep, 2, 2))
We modeled juvenile development time using survival analysis. We measured the time in days from 1st instar larvae until eclosion (EVENT
= 1) upon which flies were stored in ethanol before counting. Of the initially seeded 100 flies per vial, the remaining flies not emerging after two consecutive days of no observed eclosions were right censored (EVENT
= 0) on the last observation day. In total 14400 larvae were seeded (100 larvae x 2 Treatment
x 4 LINE
per Treatment
x 6 VIAL
per LINE
x 3 SEED
days). For P1 only three vials were seeded on day B so we seeded 3 additional vials on day C. Four vials were seeded with too many larvae and excluded from analysis. In total 10448 flies eclosed during the observation period leaving 3552 individuals to be right censored on day 9.
Censored flies were assigned sex based on the observed sex ratio of eclosees assuming an equal (50:50) sex ratio of larvae seeded to each vial at the beginning of the experiment. We calculate the number of number of males and females that did eclose and susbsequently assign sex to the remaining (uneclosed) individuals of unknown sex based on the proportion of individuals of each sex that did emerge. For example, if 70 flies were counted eclosing from a vial with 40 females and 30 males, we then designate the remaining 30 flies as 10 females and 20 males and so on so that each vial ends with 50 females and 50 males some of which are right censored (EVENT
= 0).
First we plot Kaplan-Meier survival curves without considering our full experimental design.
survminer::ggsurvplot(survfit(Surv(DAY, EVENT) ~ TRT + SEX, data = ecl.dat),
conf.int = TRUE,
risk.table = FALSE,
linetype = "SEX",
palette = c("pink", "skyblue", "red", "blue"),
fun = "event",
xlim = c(12, 21),
xlab = "Days",
#ylab = "Cumulative proportion eclosed",
legend = 'right',
legend.title = "",
legend.labs = c("M \u2640","M \u2642",'P \u2640','P \u2642'),
break.time.by = 2,
ggtheme = theme_bw())
#ggsave(filename = 'figures/eclosion.pdf', width = 5.5, height = 5, dpi = 600, useDingbats = FALSE)
Figure X: Kaplan-Meier curve for eclosion time (in days) for flies in each treatment and sex. +’s indicate censored individuals (n = 3552).
Next we need to check that the proportional hazards assumption is not violated before fitting the model, where crossing hazards (lines) indicate violation of the proportional hazards assumption.
survminer::ggsurvplot(survfit(Surv(DAY, EVENT) ~ TRT + SEX, data = ecl.dat),
conf.int = TRUE,
risk.table = FALSE,
linetype = "SEX",
palette = c("pink", "skyblue", "red", "blue"),
fun = "cloglog",
xlim = c(13, 21),
legend = 'right',
legend.title = "",
legend.labs = c("M \u2640","M \u2642",'P \u2640','P \u2642'),
break.time.by = 2,
ggtheme = theme_bw())
Figure X: ln(-ln(survival))
brms
We fit a Cox Proportional hazards model in brms
using family = cox()
, with time (days) to event (eclosion) as the response and sexual selection treatment (TRT
; Monogamy or Polyandry), SEX
(female or male) and their interaction as predictors with Seed day as a covariate. See here for a helpful explanation on fitting survival models in brms
. We also include replicate treatment as a random intercept term for each of the 8 lines and a random slope term to allow the effect of selection treatment to vary across replicate lines. We also include vial ID
as a random intercept term as individuals emerging from the same vial may show a correlated response.
We set fairly conservative normal priors on the fixed effects (mean = 0, sd = 1) and half Cauchy priors on the random effects - LINE
- (mean = 0, scale = 0.1). All other priors were left at the default in brms
.
The model is run over 4 chains with 5000 iterations each (with the first 2500 discarded as burn-in), for a total of 2500*4 = 10,000 posterior samples. Note that some of the brms
functionality is not currently available for models using the cox
family (e.g. posterior predictive checks).
if(!file.exists("output/cox_brms.rds")){
cox_brm <- brm(DAY | cens(1 - EVENT) ~ TRT * SEX + SEED + (TRT|LINE) + (1|ID),
iter = 5000, chains = 4, cores = 4,
control = list(max_treedepth = 20,
adapt_delta = 0.999),
data = ecl.dat, family = cox())
saveRDS(cox_brm, "output/cox_brms.rds")
} else {
cox_brm <- readRDS('output/cox_brms.rds')
}
This tables shows the fixed effects estimates on eclosion time. The p column shows 1 - minus the “probability of direction”, i.e. the posterior probability that the reported sign of the estimate is correct given the data and the prior; subtracting this value from one gives a Bayesian equivalent of a one-sided p-value. Click the next tab to see a complete summary of the model and its output.
hyp_test <- bind_rows(
hypothesis(cox_brm, 'TRTP = 0')$hypothesis,
hypothesis(cox_brm, 'SEXm = 0')$hypothesis,
hypothesis(cox_brm, 'TRTP:SEXm = 0')$hypothesis,
hypothesis(cox_brm, 'SEEDB = 0')$hypothesis,
hypothesis(cox_brm, 'SEEDC = 0')$hypothesis
) %>%
mutate(Parameter = c('Treatment (P)', 'Sex (M)', 'Treatment (P) x Sex (M)', 'Seed (B)', 'Seed (C)'),
across(2:5, round, 3)) %>%
relocate(Parameter, Estimate, Est.Error, CI.Lower, CI.Upper, Star)
pvals <- bayestestR::p_direction(cox_brm) %>%
as.data.frame() %>%
mutate(vars = map_chr(str_split(Parameter, "_"), ~ .x[2]),
p_val = 1 - pd,
star = ifelse(p_val < 0.05, "\\*", "")) %>%
select(vars, p_val, star)
hyp_test %>%
mutate(vars = c('TRTP', 'SEXm', 'TRTP.SEXm', 'SEEDB', 'SEEDC')) %>%
left_join(pvals %>% filter(vars != 'Intercept'),
by = c("vars")) %>%
select(Parameter, Estimate, Est.Error, CI.Lower, CI.Upper, `p` = p_val, star) %>%
rename(` ` = star) %>%
mutate(p = ifelse(p > 0.001, round(p, 3), '< 0.001')) %>%
kable() %>%
kable_styling(full_width = FALSE)
Parameter | Estimate | Est.Error | CI.Lower | CI.Upper | p | |
---|---|---|---|---|---|---|
Treatment (P) | -0.798 | 0.301 | -1.332 | -0.164 | 0.012 | * |
Sex (M) | -0.174 | 0.027 | -0.227 | -0.122 | < 0.001 | * |
Treatment (P) x Sex (M) | 0.009 | 0.040 | -0.070 | 0.086 | 0.41 | |
Seed (B) | 0.096 | 0.095 | -0.084 | 0.285 | 0.155 | |
Seed (C) | 0.338 | 0.092 | 0.161 | 0.525 | < 0.001 | * |
summary.brmsfit()
cox_brm
Family: cox Links: mu = log Formula: DAY | cens(1 - EVENT) ~ TRT * SEX + SEED + (TRT | LINE) + (1 | ID) Data: ecl.dat (Number of observations: 14000) Samples: 4 chains, each with iter = 5000; warmup = 2500; thin = 1; total post-warmup samples = 10000 Group-Level Effects: ~ID (Number of levels: 140) Estimate Est.Error l-95% CI u-95% CI Rhat Bulk_ESS Tail_ESS sd(Intercept) 0.43 0.03 0.38 0.50 1.00 1723 2858 ~LINE (Number of levels: 8) Estimate Est.Error l-95% CI u-95% CI Rhat Bulk_ESS Tail_ESS sd(Intercept) 0.24 0.15 0.03 0.58 1.01 807 1158 sd(TRTP) 0.32 0.30 0.01 1.02 1.01 719 2196 cor(Intercept,TRTP) 0.17 0.54 -0.89 0.97 1.00 2731 3923 Population-Level Effects: Estimate Est.Error l-95% CI u-95% CI Rhat Bulk_ESS Tail_ESS Intercept 0.67 0.15 0.35 0.98 1.00 2621 4058 TRTP -0.80 0.30 -1.33 -0.16 1.00 2766 2324 SEXm -0.17 0.03 -0.23 -0.12 1.00 5984 6212 SEEDB 0.10 0.09 -0.08 0.29 1.00 1235 2024 SEEDC 0.34 0.09 0.16 0.52 1.00 1257 2189 TRTP:SEXm 0.01 0.04 -0.07 0.09 1.00 5976 6909 Samples were drawn using sampling(NUTS). For each parameter, Bulk_ESS and Tail_ESS are effective sample size measures, and Rhat is the potential scale reduction factor on split chains (at convergence, Rhat = 1).
As posterior_eprid()
is not available for brms
models using the cox
family, we manually calculate the estimates for each group from the posterior predictions. The \(\beta\) coefficients from a Cox model measure the impact of covariates and give an estimate of the effect size (see here). Taking the exponent of the coefficients give the hazard ratio. In short, hazard ratios give the probability of the event occurring compared to the ‘control’ group, in our case compared to Monogamy females, where:
posterior_samples(cox_brm) %>%
as_tibble() %>%
select(starts_with("b_")) %>%
mutate(draw = 1:n()) %>%
mutate(M_f = b_Intercept,
P_f = b_Intercept + b_TRTP,
M_m = b_Intercept + b_SEXm,
P_m = b_TRTP + b_SEXm + `b_TRTP:SEXm`) %>%
select(draw, M_f, P_f, M_m, P_m) %>%
pivot_longer(cols = 2:5) %>%
mutate(SEX = str_sub(name, -1),
TRT = str_sub(name, 1, 1)) %>%
select(draw, value, SEX, TRT) %>%
pivot_wider(names_from = TRT,
values_from = value) %>%
mutate(`Difference in means (Poly - Mono)` = P - M) %>%
ggplot(aes(x = SEX, y = `Difference in means (Poly - Mono)`, fill = SEX)) +
geom_hline(yintercept = 0, linetype = 2) +
stat_halfeye() +
scale_fill_brewer(palette = 'Pastel1', direction = 1, name = "") +
scale_colour_brewer(palette = 'Pastel1', direction = 1, name = "") +
labs(y = 'Difference in means between\nselection treatments (P - M)') +
theme_bw() +
theme(legend.position = 'none',
strip.background = element_blank(),
panel.grid.major.x = element_blank()) +
NULL
Figure X: Difference in mean \(\beta\) coefficients for the survival analysis on eclosion time between the selection treatments (Polyandry - Monogamy).
We measured the length of wing vein VI as a proxy for body size to test for differences between sexes and treatments as body size may influence development time. Prior to measurement, wing images were anonymised using a custom python script provided by Henry Barton and then decoded for statistical analysis. Wing length was scaled by subtracting the mean (across all measurements) and dividing by the standard deviation.
wing_length %>%
mutate(var = paste(Treatment, Sex)) %>%
ggplot(aes(x = Sex, y = Length)) +
geom_violin(aes(fill = var), alpha = .5) +
geom_boxplot(aes(fill = var), width = .1, position = position_dodge(width = .9)) +
scale_colour_manual(values = c("pink", "skyblue", "red", "blue"), name = "") +
scale_fill_manual(values = c("pink", "skyblue", "red", "blue"), name = "",
labels = c('Monogamy Females', 'Monogamy Males',
'Polandry Females', 'Polandry Males')) +
labs(y = 'Wing vein IV length') +
theme_bw() +
theme() +
NULL
Figure X: Wing vein IV length has been scaled (subtracted the mean and divided by the standard deviation).
wing_length %>%
group_by(Treatment, Sex) %>%
summarise(Mean = mean(Length),
`Std. Errors` = sd(Length)/sqrt(n()),
N = n()) %>%
mutate(Treatment = recode(Treatment, M = "Monogamy", P = 'Polyandry'),
Sex = recode(Sex, M = "Male", F = 'Female')) %>%
mutate(across(2:4, round, 2)) %>%
kable() %>%
kable_styling(full_width = FALSE)
Treatment | Sex | Mean | Std. Errors | N |
---|---|---|---|---|
Monogamy | Female | 0.85 | 0.04 | 152 |
Monogamy | Male | -0.91 | 0.04 | 154 |
Polyandry | Female | 0.94 | 0.05 | 118 |
Polyandry | Male | -0.79 | 0.05 | 127 |
brms
We fit a model in brms
to test for differences in wing length between the sexes and sexual selection treatments. We fit treatment, sex and the treatment x sex interaction as fixed effects as well as Seed day as a covariate. As above, we included replicate treatment as a random intercept for each of the 8 lines and a random slope term for selection to allow the effect of treatment to vary across replicate lines.
As above we set conservative normal priors on the fixed effects (mean = 0, sd = 1) and half Cauchy priors on the random effects - LINE
- (mean = 0, scale = 0.1). All other priors were left at the default in brms
.
The model is run over 4 chains with 10000 iterations each (with the first 2500 discarded as burn-in), for a total of 7500*4 = 30,000 posterior samples.
if(!file.exists("output/wing_brms.rds")){
wing_brms <- brm(Length ~ Treatment * Sex + Seed + (Treatment|LINE),
data = wing_length,
iter = 10000, chains = 4, cores = 4,
prior = c(set_prior("normal(0,1)", class = "b"),
set_prior("cauchy(0,0.1)", class = "sd")),
control = list(max_treedepth = 20,
adapt_delta = 0.999)
)
saveRDS(wing_brms, "output/wing_brms.rds")
} else {
wing_brms <- readRDS('output/wing_brms.rds')
}
pp_check(wing_brms)
wing_test <- bind_rows(
hypothesis(wing_brms, 'TreatmentP = 0')$hypothesis,
hypothesis(wing_brms, 'SexM = 0')$hypothesis,
hypothesis(wing_brms, 'TreatmentP:SexM = 0')$hypothesis,
hypothesis(wing_brms, 'SeedB = 0')$hypothesis,
hypothesis(wing_brms, 'SeedC = 0')$hypothesis,
) %>%
mutate(Parameter = c('Treatment (P)', 'Sex (M)', 'Treatment (P) x Sex (M)',
'Seed (B)', 'Seed (C)'),
across(2:5, round, 3)) %>%
relocate(Parameter, Estimate, Est.Error, CI.Lower, CI.Upper, Star)
pvals <- bayestestR::p_direction(wing_brms) %>%
as.data.frame() %>%
mutate(vars = map_chr(str_split(Parameter, "_"), ~ .x[2]),
p_val = 1 - pd,
star = ifelse(p_val < 0.05, "\\*", "")) %>%
select(vars, p_val, star)
wing_test %>% mutate(vars = c('TreatmentP', 'SexM', 'TreatmentP.SexM', 'SeedB', 'SeedC')) %>%
left_join(pvals %>% filter(vars != 'Intercept'),
by = c("vars")) %>%
select(Parameter, Estimate, Est.Error, CI.Lower, CI.Upper, `p` = p_val, star) %>%
mutate(p = ifelse(p > 0.001, round(p, 3), '< 0.001')) %>%
rename(` ` = star) %>%
kable() %>%
kable_styling(full_width = FALSE)
Parameter | Estimate | Est.Error | CI.Lower | CI.Upper | p | |
---|---|---|---|---|---|---|
Treatment (P) | 0.111 | 0.261 | -0.406 | 0.638 | 0.317 | |
Sex (M) | -1.733 | 0.045 | -1.823 | -1.644 | < 0.001 | * |
Treatment (P) x Sex (M) | 0.020 | 0.068 | -0.114 | 0.154 | 0.384 | |
Seed (B) | -0.098 | 0.042 | -0.181 | -0.017 | 0.008 | * |
Seed (C) | -0.030 | 0.043 | -0.115 | 0.054 | 0.24 |
summary.brmsfit()
wing_brms
Family: gaussian Links: mu = identity; sigma = identity Formula: Length ~ Treatment * Sex + Seed + (Treatment | LINE) Data: wing_length (Number of observations: 551) Samples: 4 chains, each with iter = 10000; warmup = 5000; thin = 1; total post-warmup samples = 20000 Group-Level Effects: ~LINE (Number of levels: 8) Estimate Est.Error l-95% CI u-95% CI Rhat Bulk_ESS sd(Intercept) 0.33 0.12 0.16 0.61 1.00 7540 sd(TreatmentP) 0.16 0.18 0.00 0.65 1.00 6252 cor(Intercept,TreatmentP) 0.09 0.55 -0.91 0.95 1.00 15048 Tail_ESS sd(Intercept) 10324 sd(TreatmentP) 7152 cor(Intercept,TreatmentP) 10995 Population-Level Effects: Estimate Est.Error l-95% CI u-95% CI Rhat Bulk_ESS Tail_ESS Intercept 0.87 0.18 0.51 1.22 1.00 8584 9556 TreatmentP 0.11 0.26 -0.41 0.64 1.00 10015 10628 SexM -1.73 0.05 -1.82 -1.64 1.00 20172 15736 SeedB -0.10 0.04 -0.18 -0.02 1.00 22473 15468 SeedC -0.03 0.04 -0.11 0.05 1.00 22268 15614 TreatmentP:SexM 0.02 0.07 -0.11 0.15 1.00 19758 15712 Family Specific Parameters: Estimate Est.Error l-95% CI u-95% CI Rhat Bulk_ESS Tail_ESS sigma 0.40 0.01 0.37 0.42 1.00 26769 14763 Samples were drawn using sampling(NUTS). For each parameter, Bulk_ESS and Tail_ESS are effective sample size measures, and Rhat is the potential scale reduction factor on split chains (at convergence, Rhat = 1).
We predict the mean wing vein IV length for each treatment and sex from the model averaged across the eight replicate selection lines and seeding days. The plots show the difference in posterior estimates between the P and M treatment for each sex separately. Note that females are larger than males but effect sizes are plotted for each sex separately.
new <- expand_grid(Sex = c("M", "F"),
Treatment = c("M", "P"),
LINE = NA, Seed = NA) %>%
mutate(type = 1:n())
posterior_epred(
wing_brms, newdata = new, re_formula = NA,
summary = FALSE, resp = 'Length') %>%
reshape2::melt() %>% rename(draw = Var1, type = Var2) %>%
as_tibble() %>%
left_join(new, by = "type") %>%
select(draw, value, Sex, Treatment) %>%
pivot_wider(names_from = Treatment,
values_from = value) %>%
mutate(`Difference in means (Poly - Mono)` = P - M) %>%
ggplot(aes(x = Sex, y = `Difference in means (Poly - Mono)`, fill = Sex)) +
geom_hline(yintercept = 0, linetype = 2) +
stat_halfeye() +
scale_fill_brewer(palette = 'Pastel1', direction = 1, name = "") +
scale_colour_brewer(palette = 'Pastel1', direction = 1, name = "") +
labs(y = 'Difference in means between\nselection treatments (P - M)') +
theme_bw() +
theme(legend.position = 'none',
strip.background = element_blank(),
panel.grid.major.x = element_blank()) +
NULL
Figure XX: Posterior estimates of treatment effects on wing vein IV length (proxy for body size).
sessionInfo()
R version 4.0.3 (2020-10-10) Platform: x86_64-apple-darwin17.0 (64-bit) Running under: macOS Catalina 10.15.7 Matrix products: default BLAS: /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRblas.dylib LAPACK: /Library/Frameworks/R.framework/Versions/4.0/Resources/lib/libRlapack.dylib locale: [1] en_GB.UTF-8/en_GB.UTF-8/en_GB.UTF-8/C/en_GB.UTF-8/en_GB.UTF-8 attached base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] knitrhooks_0.0.4 knitr_1.31 kableExtra_1.3.1 tidybayes_2.3.1 [5] brms_2.14.4 Rcpp_1.0.6 nlme_3.1-151 lme4_1.1-26 [9] Matrix_1.3-2 coxme_2.2-16 bdsmatrix_1.3-4 survival_3.2-7 [13] ggridges_0.5.3 forcats_0.5.1 stringr_1.4.0 dplyr_1.0.3 [17] purrr_0.3.4 readr_1.4.0 tidyr_1.1.2 tibble_3.0.5 [21] ggplot2_3.3.3 tidyverse_1.3.0 workflowr_1.6.2 loaded via a namespace (and not attached): [1] readxl_1.3.1 backports_1.2.1 plyr_1.8.6 [4] igraph_1.2.6 splines_4.0.3 svUnit_1.0.3 [7] crosstalk_1.1.1 rstantools_2.1.1 inline_0.3.17 [10] digest_0.6.27 htmltools_0.5.1.1 rsconnect_0.8.16 [13] fansi_0.4.2 magrittr_2.0.1 openxlsx_4.2.3 [16] modelr_0.1.8 RcppParallel_5.0.2 matrixStats_0.57.0 [19] xts_0.12.1 prettyunits_1.1.1 colorspace_2.0-0 [22] rvest_0.3.6 ggdist_2.4.0 haven_2.3.1 [25] xfun_0.20 callr_3.5.1 crayon_1.3.4 [28] jsonlite_1.7.2 zoo_1.8-8 glue_1.4.2 [31] survminer_0.4.8 gtable_0.3.0 webshot_0.5.2 [34] V8_3.4.0 distributional_0.2.1 car_3.0-10 [37] pkgbuild_1.2.0 rstan_2.21.1 abind_1.4-5 [40] scales_1.1.1 mvtnorm_1.1-1 DBI_1.1.1 [43] rstatix_0.6.0 miniUI_0.1.1.1 viridisLite_0.3.0 [46] xtable_1.8-4 foreign_0.8-81 km.ci_0.5-2 [49] stats4_4.0.3 StanHeaders_2.21.0-7 DT_0.17 [52] htmlwidgets_1.5.3 httr_1.4.2 threejs_0.3.3 [55] RColorBrewer_1.1-2 arrayhelpers_1.1-0 ellipsis_0.3.1 [58] reshape_0.8.8 pkgconfig_2.0.3 loo_2.4.1 [61] farver_2.0.3 dbplyr_2.0.0 labeling_0.4.2 [64] tidyselect_1.1.0 rlang_0.4.10 reshape2_1.4.4 [67] later_1.1.0.1 munsell_0.5.0 cellranger_1.1.0 [70] tools_4.0.3 cli_2.2.0 generics_0.1.0 [73] broom_0.7.3 evaluate_0.14 fastmap_1.1.0 [76] yaml_2.2.1 processx_3.4.5 fs_1.5.0 [79] zip_2.1.1 survMisc_0.5.5 whisker_0.4 [82] mime_0.9 projpred_2.0.2 xml2_1.3.2 [85] compiler_4.0.3 bayesplot_1.8.0 shinythemes_1.2.0 [88] rstudioapi_0.13 gamm4_0.2-6 curl_4.3 [91] ggsignif_0.6.0 reprex_1.0.0 statmod_1.4.35 [94] stringi_1.5.3 highr_0.8 ps_1.5.0 [97] Brobdingnag_1.2-6 lattice_0.20-41 nloptr_1.2.2.2 [100] markdown_1.1 KMsurv_0.1-5 shinyjs_2.0.0 [103] vctrs_0.3.6 pillar_1.4.7 lifecycle_0.2.0 [106] bridgesampling_1.0-0 insight_0.12.0 data.table_1.13.6 [109] httpuv_1.5.5 R6_2.5.0 promises_1.1.1 [112] rio_0.5.16 gridExtra_2.3 codetools_0.2-18 [115] boot_1.3-26 colourpicker_1.1.0 MASS_7.3-53 [118] gtools_3.8.2 assertthat_0.2.1 rprojroot_2.0.2 [121] withr_2.4.1 shinystan_2.5.0 bayestestR_0.8.2 [124] mgcv_1.8-33 parallel_4.0.3 hms_1.0.0 [127] grid_4.0.3 coda_0.19-4 minqa_1.2.4 [130] rmarkdown_2.6 carData_3.0-4 ggpubr_0.4.0 [133] git2r_0.28.0 shiny_1.6.0 lubridate_1.7.9.2 [136] base64enc_0.1-3 dygraphs_1.1.1.6