Closed LeiGuo0812 closed 11 months ago
Hi,
I think the problem is that you are not using 3D axis from matplotlib
fig = plt.figure(figsize=(5,5))
ax = fig.add_subplot(111, projection='3d')
Adding the projection='3d' to the axis is the critical bit.
This should solve the problem.
It worked! Thanks a lot!
Hi!
I'm trying to plot multiple plots in a figure, but I encounted an error when I try to pass the parameter
ax
. Here below is a example:The error:
I'm not sure if I am doing it wrong. Thanks a lot!