Skip to content

Warning on 04.11 Customizing Matplotlib - Configurations and Stylesheets #364

Open
@LeonLrz

Description

@LeonLrz

When I want to run the codes below

# reset rcParams
plt.rcParams.update(IPython_default);

I got those warning
D:\Anaconda3\lib_collections_abc.py:841: MatplotlibDeprecationWarning:
The examples.directory rcparam was deprecated in Matplotlib 3.0 and will be removed in 3.2. In the future, examples will be found relative to the 'datapath' directory.
self[key] = other[key]
D:\Anaconda3\lib_collections_abc.py:841: MatplotlibDeprecationWarning:
The savefig.frameon rcparam was deprecated in Matplotlib 3.1 and will be removed in 3.3.
self[key] = other[key]
D:\Anaconda3\lib_collections_abc.py:841: MatplotlibDeprecationWarning:
The text.latex.unicode rcparam was deprecated in Matplotlib 3.0 and will be removed in 3.2.
self[key] = other[key]
D:\Anaconda3\lib_collections_abc.py:841: MatplotlibDeprecationWarning:
The verbose.fileo rcparam was deprecated in Matplotlib 3.1 and will be removed in 3.3.
self[key] = other[key]
D:\Anaconda3\lib_collections_abc.py:841: MatplotlibDeprecationWarning:
The verbose.level rcparam was deprecated in Matplotlib 3.1 and will be removed in 3.3.
self[key] = other[key]

How should I fix this problem?

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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

      Warning on 04.11 Customizing Matplotlib - Configurations and Stylesheets · Issue #364 · jakevdp/PythonDataScienceHandbook