split_ssmdzprime_output <-
function(xl,m=6,rate="OCR"){
filter(xl,Measurement==m,Group!="Background") %>%
select(Group,Rate=matches(rate)) %>%
group_by(Group) %>%
summarise(mu=mean(rate),sd=sd(rate),n=n()) %>%
ungroup() %>%
arrange(mu) %>%
mutate(condition = c("Neg","Pos")) %>%
ssmd_zprime_summary(.,rate)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.