I saw an appealing multivariate density plot using Tikz and was wondering if there was a way to replicate this plot with my own data within R. I am not familiar with Tikz, but I found this reference which seems to imply I may be able to use this feature within R. http://www.texample.net/tikz/examples/tikzdevice-demo/
In short, what is the best way to produce a plot very similar (different distribution of course) to the one shown below using the two data samples provided?
Here is some sample data that can be used to create the distribution plot.
# Sample data
var1 <- exp(rlnorm(100000, meanlog=0.03, sdlog=0.15))/100
var2 <- 1-(var1 + rnorm(100000, 0, 0.01))
Here is the reference page where I found the original chart
https://tex.stackexchange.com/questions/31708/draw-a-bivariate-normal-distribution-in-tikz

