Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Pyplot ng (don't merge)#2736

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Closed
tacaswell wants to merge2 commits intomatplotlib:masterfromtacaswell:pyplot_ng
Closed
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
144 changes: 144 additions & 0 deletionslib/matplotlib/_pyplot_ng.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
from functools import wraps

import matplotlib.pyplot as plt
import matplotlib

Axes = matplotlib.axes.Axes
Figure = matplotlib.figure.Figure

WRAP_WITH_HOLD = set((
'acorr',
'angle_spectrum',
'arrow',
'axhline',
'axhspan',
'axvline',
'axvspan',
'bar',
'barh',
'broken_barh',
'boxplot',
'cohere',
'clabel',
'contour',
'contourf',
'csd',
'errorbar',
'eventplot',
'fill',
'fill_between',
'fill_betweenx',
'hexbin',
'hist',
'hist2d',
'hlines',
'imshow',
'loglog',
'magnitude_spectrum',
'pcolor',
'pcolormesh',
'phase_spectrum',
'pie',
'plot',
'plot_date',
'psd',
'quiver',
'quiverkey',
'scatter',
'semilogx',
'semilogy',
'specgram',
'stackplot',
'stem',
'step',
'streamplot',
'tricontour',
'tricontourf',
'tripcolor',
'triplot',
'vlines',
'xcorr',
'barbs',
))


def gca_wrapper(key):
ax = plt.gca()
f = getattr(ax, key)

@wraps(f)
def inner(*args, **kwargs):
ret = f(*args, **kwargs)
plt.draw_if_interactive()
return ret

return inner


def gca_wrapper_hold(key):
ax = plt.gca()
f = getattr(ax, key)

@wraps(f)
def inner(*args, **kwargs):
hold = kwargs.pop('hold', None)
washold = ax.ishold()
if hold is not None:
ax.hold(hold)
try:
ret = f(*args, **kwargs)
plt.draw_if_interactive()
finally:
ax.hold(washold)

return ret

return inner


def gcf_wrapper(key):
fig = plt.gcf()
f = getattr(fig, key)

@wraps(f)
def inner(*args, **kwargs):
ret = f(*args, **kwargs)
plt.draw_if_interactive()
return ret

return inner


class pyplotNG(object):

def __getattr__(self, key):
if hasattr(Axes, key):
if key in WRAP_WITH_HOLD:
return gca_wrapper_hold(key)
return gca_wrapper(key)
elif hasattr(Figure, key):
return gcf_wrapper(key)
else:
return getattr(plt, key)


def set_defaults(cls, key, new_defaults):
if hasattr(cls, '_orig_' + key):
orig_fun = getattr(Axes, '_orig_' + key)
else:
orig_fun = getattr(cls, key)
setattr(cls, '_orig_' + key, orig_fun)

@wraps(orig_fun)
def wrapper(*args, **kwargs):
for k, v in new_defaults.iteritems():
if k not in kwargs:
kwargs[k] = v
return orig_fun(*args, **kwargs)

setattr(cls, key, wrapper)


def reset_defaults(cls, key):
if hasattr(cls, '_orig_' + key):
setattr(cls, key, getattr(Axes, '_orig_' + key))

[8]ページ先頭

©2009-2025 Movatter.jp