## ----setup, include=FALSE----------------------------------------------------- library(knitr) opts_chunk$set(echo = FALSE, message=FALSE) if (requireNamespace("Cairo", quietly = TRUE)) { opts_chunk$set(dev='CairoPNG') } RcppArmadillo::armadillo_throttle_cores(1) library(dexter) library(latticeExtra) fq = c(10,12,30,20,40,24,15,18,14) fq=matrix(fq,3,3) attr(fq,"dimnames")=list(c(0,1,2),c(0,1,2)) den = matrix(c(10,32,85,32,85,42,85,42,14),3,3) blues = c("#005D88","#0086A3","#84AEBF","#C2D0D6","#E2E2E2") reds = c("#972B2F","#A94C4F","#BD6F71","#D39A9B","#F7EFEF") ## ----figProf, results="hide",fig.height=4,fig.width=4,fig.align='center'----- # fig.align='center' does not work anymore when you specify any css styles # therefore the: display:block;margin: 0 auto; db = start_new_project(verbAggrRules, ":memory:", person_properties=list(gender="unknown")) add_booklet(db, verbAggrData, "agg") add_item_properties(db, verbAggrProperties) profile_plot(db, item_property='mode', covariate='gender', booklet_id=='agg') ## ----frq---------------------------------------------------------------------- rownames(fq) = c(0,1,2) colnames(fq) = c(0,1,2) knitr::kable(fq) ## ----fig1, fig.align='center', out.extra='style="margin-left: -30px; margin-top: -45px;"'---- cloud(fq, panel.3d.cloud = panel.3dbars, xbase = 0.4, ybase = 0.4, zlim = c(0, max(fq)), scales = list(arrows = FALSE, just = "right"), xlab = "A", ylab = "B", col.facet = "tan", zlab='', pretty=TRUE, par.box = list(lty=0), screen = list(z = 40, x = -30)) ## ----fig21, out.extra='style="margin-left: -30px; margin-top: -50px;"'------- joint = prop.table(fq) cloud(joint, panel.3d.cloud = panel.3dbars, xbase = 0.4, ybase = 0.4, zlim = c(0, 1), scales = list(arrows = FALSE, just = "right"), xlab = "A", ylab = "B", zlab ='', pretty=TRUE, par.box = list(lty=0), col.facet = "skyblue", alpha.facet=.7, screen = list(z = 40, x = -30)) ## ----fig22, out.extra='style="margin-left: -30px; margin-top: -50px;"'------- conditional = prop.table(fq,1) co = rep(c('skyblue1','pink1','springgreen1'),3) cloud(conditional, panel.3d.cloud = panel.3dbars, xbase = 0.4, ybase = 0.4, zlim = c(0, 1), scales = list(arrows = FALSE, just = "right"), xlab = "A", ylab = "B", zlab ='', pretty=TRUE, par.box = list(lty=0), col.facet = co, alpha.facet=.7, screen = list(z = 40, x = -30)) ## ----fig3, out.extra='style="margin-left: -30px; margin-top: -50px;"'--------- special = fq / den j = 6-c(1,2,3,2,3,4,3,4,5) sp=blues[j] cloud(special, panel.3d.cloud = panel.3dbars, xbase = 0.4, ybase = 0.4, zlim = c(0, 1), scales = list(arrows = FALSE, just = "right"), xlab = "A", ylab = "B",zlab ='', pretty=TRUE, par.box = list(lty=0), col.facet = sp, alpha.facet=.7, screen = list(z = 40, x = -30)) ## ----fig41, out.extra='style="margin-left: -30px; margin-top: -50px;"'-------- hi = c(1,4,5,6,9) sp[hi] = reds[j[hi]] cloud(special, panel.3d.cloud = panel.3dbars, xbase = 0.4, ybase = 0.4, zlim = c(0, 1), scales = list(arrows = FALSE, just = "right"), xlab = "A", ylab = "B",zlab ='', pretty=TRUE, par.box = list(lty=0), col.facet = sp, alpha.facet=.7, screen = list(z = 40, x = -30)) ## ----fig42, out.extra='style="margin-top: -30px;margin-left:0px;"'------------ d = expand.grid(0:2,0:2) plot(d, xlab = "A", ylab = "B", xlim=c(0.5,4), ylim=c(-0.3,2.7), asp=1, pch=15, cex=2.5, col=sp, axes=FALSE) lines(0:1,1:0,col="gray") lines(1:2,2:1,col="gray") lines(c(0,2),c(2,0),col="gray") lines(c(0,0,1,2,2), c(0,1,1,1,2), col=3, lwd=4) axis(1, at = 0:2,lty=0) axis(2, at = 0:2,lty=0) ## ----prof_plot2, fig.height=5, fig.width=5, fig.align='center'--------------- profile_plot(db, item_property='mode', covariate='gender', booklet_id=='agg', main='Gender') mtext('Do versus Want') ## ----include=FALSE------------------------------------------------------------ close_project(db) RcppArmadillo::armadillo_reset_cores()