“merencanakan” Kode Jawaban

plot matplotlib

import matplotlib.pyplot as plt
fig = plt.figure(1)	#identifies the figure 
plt.title("Y vs X", fontsize='16')	#title
plt.plot([1, 2, 3, 4], [6,2,8,4])	#plot the points
plt.xlabel("X",fontsize='13')	#adds a label in the x axis
plt.ylabel("Y",fontsize='13')	#adds a label in the y axis
plt.legend(('YvsX'),loc='best')	#creates a legend to identify the plot
plt.savefig('Y_X.png')	#saves the figure in the present directory
plt.grid()	#shows a grid under the plot
plt.show()
Uptight Unicorn

Plot Python

import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])
plt.show()
mrjakobdk

merencanakan

#scatter plot
plt.scatter(gap.gdpPercap,gap.lifeExp)
plt.xscale('log')
plt.show()
#color='red'
#plt.ylabel('Latitude')
#plt.xlabel('Longitude')
#plt.clf()
#plt.yticks([0, 2, 4, 6, 8, 10])
#plt.yticks([0, 2, 4, 6, 8, 10],
#['0', '2B', '4B', '6B', '8B', '10B'])

Bright Beaver

Jawaban yang mirip dengan “merencanakan”

Pertanyaan yang mirip dengan “merencanakan”

Lebih banyak jawaban terkait untuk “merencanakan” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya