Plot3d: how to set size of graph, or size of GIF file generated from one

size needs a tuple, not a string. Try:

plt = plot3d(1, xlim=(-25,25), ylim=(-25,25), zlim=(0,90),
                title = "Rossler Attractor", marker = 2, 
                xlabel="x", ylabel="y", zlabel="z",
                size=(1920, 1080),
                label="")
1 Like