My data looks like this:
Col1 Var1 Var2
A 1 NA
B NA 1
C 1 NA
D 1 1
I want to create a grid plot of missing data just as one can do using the Amelia package (https://www.r-bloggers.com/ggplot-your-missing-data-2/)
However, I find the result pretty ugly. Basically, I want variables in col 1 to be in the x axis and Var1 and Va2 on the Y axis. Like grey when present and black when absent. Does that make sense?


