Suggestion for new vis for GPs
Attached is an archive demonstrating use of the visualization discussed at this ggplot2-users thread. Sorry I didn't formulate this as a pull request, but I don't have time at the moment to delve into how to best merge it with the existing bayesplot frameworks. Also attaching the plot resulting from running the demo.
gp_plot_demo.zip

You can simply use
+ theme(panel.ontop = TRUE, panel.background = element_blank())
to put the grid lines on top.
W.
@Ax3man Ah, neat trick!
Oh, spoke too soon; well, it is a neat trick, but the subsequent grid lines have alpha=1 and theme(panel.grid=element_line(alpha=.5)) yields an error.
You can use scales::alpha('white', 0.5)), or rgb(1, 1, 1, 0.5) as colors. Although it seems you have to set both major and minor grid lines separately.
Probably related to https://github.com/tidyverse/ggplot2/pull/1754
Cool, thanks to both of you!
@mike-lawrence I'll follow up once I have a chance to put a preliminary implementation up on a branch.
Seems you were beat to the punch by ggfan::geom_fan(): https://cran.r-project.org/web/packages/ggfan/vignettes/geom_fan.html