I'm trying to create something similar to these plots:
I have the surface plot and what I would like to put under it being plotted separately for now:
I've tried plotting the 2D image as a binary plot in the surface plot, but each pixel is interpreted as a whole unit in the coordinate system, which is incorrect, and it ends up duplicating the coordinate axes and plot title, etc. As well, gnuplot's xyplane isn't necessarily at z=0, so just plotting using splot normally with a z value of 0 also doesn't do what I want.
These are my plotting files so far:
2D Scatterplot:
set terminal png enhanced size 8000, 4800 truecolor font "arial,60"
set encoding utf8
set output outfile
set autoscale fix
set border lw 3
set style fill transparent solid 0.075 noborder
set style circle radius 0.03
set title plotTitle
plot sample1 u 1:2 w circles notitle,\
sample2 u 1:2 w circles notitle,\
$ContourTable w lines lw 6 lc rgb 'black' notitle,\
keyentry w circles fill solid 1.0 noborder lc 1 title "ω_1",\
keyentry w circles fill solid 1.0 noborder lc 2 title "ω_2"
Surface Plot:
set terminal png enhanced size 8000, 4800 truecolor font "arial,60"
set encoding utf8
set output outfile
set autoscale fix
set border lw 3
set title plotTitle
set isosamples 100
set pm3d at s explicit hidden3d
unset hidden3d
set palette model RGB define (1 "dark-violet", 2 "#009e73")
splot pdfFile u 1:2:3:4 w pm3d lc rgb "black"





pdfFile? How does this data look like? Is this a density plot of the 2D scatter data? Can you give an example?pdfFilelooks like: pastebin.com/XMhBLeW5.