There seems to be no way to define two different palettes (set palette 1 ...) in gnuplot (5.0). With three datasets in stdin I can plot them using three different colors or even one with palette and the other two with colors. But how to plot first two with different palettes ?
Tried replot but it is confusing and didn't help
set xrange [0:10]
set yrange [0:10]
set cbrange [0:50]
set palette rgbformulae 10,13,3
plot '-' w l lc palette, '-' w l lc rgb 'green', '-' w l lc rgb 'blue';
1 2 10
2 2 20
3 2 30
4 2 40
5 2 50
e
1 4 10
2 4 20
3 4 30
4 4 40
5 4 50
e
1 1
2 2
3 3
4 4
5 5
I expect an approach that would let me plot two datasets with two different paletts and third dataset with a given color