кодесурса
«Python

Matplotlib Basic: построение двух или более линий с разными стилями

script1adsense2code
script1adsense3code

Matplotlib Basic: упражнение 7 с решением

Напишите программу на Python для построения двух или более линий с разными стилями.

Пример решения :

Код Python:

import matplotlib.pyplot as plt
# line 1 points
x1 = [10,20,30]
y1 = [20,40,10]
# line 2 points
x2 = [10,20,30]
y2 = [40,10,30]
# Set the x axis label of the current axis.
plt.xlabel('x - axis')
# Set the y axis label of the current axis.
plt.ylabel('y - axis')
# Plot lines and/or markers to the Axes.
plt.plot(x1,y1, color='blue', linewidth = 3,  label ='line1-dotted',linestyle='dotted')
plt.plot(x2,y2, color='red', linewidth = 5,  label ='line2-dashed', linestyle='dashed')
# Set a title 
plt.title("Plot with two or more lines with different styles")
# show a legend on the plot
plt.legend()
# function to show the plot
plt.show()

Пример вывода:

«Matplotlib

Редактор кода Python:

Внесите свой код и комментарии через Disqus.

Предыдущий: Напишите программу на Python для построения двух или более линий с легендами, различной ширины и цвета.
Далее: Напишите программу на Python для построения двух или более линий и установки маркеров линий.

Каков уровень сложности этого упражнения?

Новый контент: Composer: менеджер зависимостей для PHP , R программирования


script1adsense4code
script1adsense5code
disqus2code
script1adsense6code
script1adsense7code
script1adsense8code
buysellads2code