I thought it’d be fun to celebrate spooky season with a little stats punny plot. We’re going to turn a normal distribution into a paranormal distribution! HA! Ok first let’s get some packages. library(tidyverse)library(tweenr)library(gganimate) Now let’s generate our Normal data: We’re doing this twice in the data frame because we need to have the same number of data points as the paranormal data, which has a little wiggly bottom. n <-100x_top <-seq(-1.5, 1.5, length.out = n)y_top <...