AERA Preview

[This article was first published on Educate-R - R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

The American Educational Research Association (AERA) annual conference is this weekend in Philadelphia. I was lucky to have a paper accepted into the conference. I am presenting a meta analysis that I have been working on for the past two years or so titled: Model misspecification and assumption violations with the linear mixed model: A meta analysis.

In this paper, I have compiled numerous monte carlo studies perform a quantitative synthesis of the literature. I have focused primarily on longitudinal linear mixed models as that was what my dissertation topic, and practically speaking, I already had many monte carlo studies in hand making the task a bit simpler.

Here is a sneak peak of some of the results from my paper in the form of an interactive chart using the rChart package to get started. Here is my r code to generate the initial chart:

library(rCharts)
h1 <- hPlot(x = "fitSerCor2", y = "avgt1e", group = "missRE", data = intmean)
h1$yAxis(title = list(text = "Empirical Type I Error Rate"), min = 0.00, max = 0.2, tickInterval = 0.05)
h1$xAxis(title = list(text = "Fitted Serial Correlation Structure"),
         categories = c("Ind", "AR1", "MA1", "MA2", "ARMA"))
h1$legend(verticalAlign = "top", align = "right", layout = "vertical", title = list(text = "Miss RE"))
h1$print('chart1', include_assets = TRUE, cdn = TRUE)

As in one of my prior posts about rCharts I manually added a few features to the Javascript manually. I find that easier than bundling lists upon lists to achieve the desired result. Below is the final image:

If anyone is attending AERA this year and wants to listen to my presentation as well as others dealing with Methodological Considerations in Modeling Latent Growth (the title of the session) stop by the Convention Center on Sunday, April 6th from 4:05 to 5:35 pm in room 117. Even if you do not want to hear about modeling latent growth, but would rather talk about r, perhaps we can meetup somewhere else.

To leave a comment for the author, please follow the link and comment on their blog: Educate-R - R.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)