Skip to content

Case-Insensitive properties have been deprecated since matptlolib 3.3 #10

Open
@ptoche

Description

@ptoche

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions