I am trying to follow the instructions from this website : https://cran.r-project.org/web/packages/bivariate/vignettes/bivariate.pdf (page 14)
To replicate the above styles of plots. 
I tried to make my own data for this:
e.g.
a = rnorm(100,100,100)
b = rnorm(100,100,100)
c = rnorm(100,100,100)
d = data.frame(a,b,c)
plot (d, theme="blue",
axes = c (TRUE, FALSE), xat = c (-1.5, 1.5) )
But this produces the following error:
Error in plot.default(...) :
formal argument "axes" matched by multiple actual arguments
I tried removing one of the variables:
d$c = NULL
plot (d, theme="blue",
axes = c (TRUE, FALSE), xat = c (-1.5, 1.5) )
But this produces a different graph, not the one I want
Can someone please tell me why my visualizations are not looking like the ones from the tutorial?