cara meningkatkan lebar garis dalam grafik regresi linier di matplotlib
# importing packages
import matplotlib.pyplot as plt
import numpy as np
# create data
x_values = np.arange(0, 10)
y_values = np.arange(0, 10)
# Adjust the line widths
plt.plot(x_values, y_values - 2, linewidth=5)
Mahendra Jakhar (B20CI021)