Data_Driven_Science_Python_Demos icon indicating copy to clipboard operation
Data_Driven_Science_Python_Demos copied to clipboard

Case-Insensitive properties have been deprecated since matptlolib 3.3

Open ptoche opened this issue 1 year ago • 0 comments

As an example, the following code, from CH01_SEC04_1_Linear.ipynb,

plt.plot(a, x*a, Color='k', LineWidth=2, label='True line') # True relationship
plt.plot(a, b, 'x', Color='r', MarkerSize = 10, label='Noisy data') # Noisy measurements

should now be:

plt.plot(a, x*a, Color='k', linewidth=2, label='True line') # True relationship
plt.plot(a, b, 'x', Color='r', markersize = 10, label='Noisy data') # Noisy measurements

ptoche avatar Jun 04 '24 19:06 ptoche