This commit is contained in:
mjgaughan 2024-06-23 23:54:09 -04:00
commit 9aa31b7750
3 changed files with 7 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -61,6 +61,13 @@ contrib_contrib_model <- glmer.nb(log1pcount ~ after_doc + (after_doc| upstream_
summary(contrib_contrib_model)
saveRDS(contrib_contrib_model, "final_models/0623_pop_contrib_contrib.rda")
library(texreg)
texreg(list(collab_readme_model, contrib_readme_model), stars=NULL, digits=2,
custom.model.names=c( 'collab','contrib.' ),
custom.coef.names=c('(Intercept)', 'after_introduction'),
use.packages=FALSE, table=FALSE, ci.force = TRUE)
library(ggplot2)
contrib_pop_readme |>
ggplot(aes(x = after_doc, y = log1pcount, col = as.factor(after_doc))) +