Matplotlib Line

Matplotlib Line là gì? 

Matplotlib Line là dùng để vẽ đường trong biểu đồ.Line có nhiều kiểu (linestyle) như: dotted ':', solid '-', dashed '--', dashdot '-.', None ' '

Cách vẽ biểu đồ đường Line trong python.

Sử dụng từ khóa linestyle hoặc ls để biểu thị cho kiểu loại của đường.

Vẽ biểu đồ Line trong python có dạng nét đứt bởi các dấu chấm (dotted)

Ví dụ

import matplotlib.pyplot as plt
import numpy as np

x_points = np.array([1,3,8,9])
y_points = np.array([10,24,15,50])
plt.plot(x_points, y_points, linestyle=':')
plt.show()

Kết quả:

 

Vẽ biểu đồ đường Line trong python có dạng nét đứt bởi các dấu gạch (dashed)

Ví dụ

import matplotlib.pyplot as plt
import numpy as np

x_points = np.array([1,3,8,9])
y_points = np.array([10,24,15,50])
plt.plot(x_points, y_points, linestyle='dashed')
plt.show()

Kết quả:

Hoặc

Ví dụ

import matplotlib.pyplot as plt
import numpy as np

x_points = np.array([1,3,8,9])
y_points = np.array([10,24,15,50])
plt.plot(x_points, y_points, ls='--')
plt.show()

Kết quả:

Cách thay đổi màu sắc của đường (Line) trong biểu đồ (Line Color)

Sử dụng từ khóa color hoặc c để thiết lập biểu thị màu sắc của đường.

Ví dụ vẽ biểu đồ đường nét đứt dashed  và có màu đỏ.

Ví dụ

import matplotlib.pyplot as plt
import numpy as np

x_points = np.array([1,3,8,9])
y_points = np.array([10,24,15,50])
plt.plot(x_points, y_points, linestyle='dashed', color ='r')
plt.show()

Kết quả:

 

Ví dụ vẽ biểu đồ đường nét chấm dotted và có màu xanh

Ví dụ

import matplotlib.pyplot as plt
import numpy as np

x_points = np.array([1,3,8,9])
y_points = np.array([10,24,15,50])
plt.plot(x_points, y_points, ls=':', c='g')
plt.show()

Kết quả:

Cách thay đổi kích thước, độ dày của đường (Line) trong biểu đồ (Line Width)

Sử dụng từ khóa linewidth hoặc lw để thiết lập biểu thị cho độ dày,rộng của đường.

Ví dụ

import matplotlib.pyplot as plt
import numpy as np

x_points = np.array([1,3,8,9])
y_points = np.array([10,24,15,50])
plt.plot(x_points, y_points, linewidth='15.5')
plt.show()

Kết quả: