I managed to plot a 3D graph using Spyder (Python 3.5). However, the size of the graph is too small. How do I increase the size of the graph so that I can save it as an image file?
The below is the code used to plot the graph:
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
x =[0,1,2,3,4]
y =[11,1,5,2,9]
z =[1,2,3,4,5,6]
ax.scatter(x, y, z, c='r', marker='o')
ax.set_xlabel('Days since last interaction')
ax.set_ylabel('Number of conversions')
ax.set_zlabel('Total number of interactions')
plt.show()
Thanks!