假期归来-matplotlib

截图来自>

import matplotlib.pyplot as plt
cubes=[x**3 for x in range(1,6)]
input_values=list(range(1,6))
plt.plot(input_values,cubes,linewidth=5,c='purple')
plt.title('cube numbers',fontsize=24)
plt.xlabel('value',fontsize=14)
plt.ylabel('cube of number',fontsize=14)
plt.tick_params(axis='both',labelsize=14)
plt.show()

假期归来-matplotlib_第1张图片

import matplotlib.pyplot as plt
x_values=list(range(1,5001))
y_values=[x**3 for x in x_values]
plt.scatter(x_values,y_values,s=50,c=y_values,cmap=plt.cm.Purples)
plt.axis([0,5100,0,125000000000])
plt.title('cube numbers',fontsize=24)
plt.xlabel('value',fontsize=14)
plt.ylabel('cube of number',fontsize=14)
plt.tick_params(axis='both',labelsize=14)

plt.show()

假期归来-matplotlib_第2张图片



你可能感兴趣的:(假期归来-matplotlib)