I'm doing a 3D plot in Julia and I get the following chart:
with this code
Plots.pyplot()
fig1 = Plots.surface(x, y, z, ylabel=L"\kappa",xlabel=L"\phi",
zlabel=L"Y^i_2",background_color = :white, zrotation=90, xrotation = 0,
yrotation = 0,camera = (60, 50))
I would like to have both the xaxis and yaxis starting from zero at the same corner. Therefore, I would need to move the vertical (z) axis. Essentially, I would like to be able to generate these figures
In Python, it can be done (as explained here Changing position of vertical (z) axis of 3D plot (Matplotlib)?) but I can't figure out how to do it in Julia.
Thank you very much!