本文整理汇总了Python中matplotlib.axes.Axes.plot_date方法的典型用法代码示例。如果您正苦于以下问题:Python Axes.plot_date方法的具体用法?Python Axes.plot_date怎么用?Python Axes.plot_date使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matplotlib.axes.Axes
的用法示例。
在下文中一共展示了Axes.plot_date方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: plot_servers
# 需要导入模块: from matplotlib.axes import Axes [as 别名]
# 或者: from matplotlib.axes.Axes import plot_date [as 别名]
def plot_servers(ax: Axes, stats: Stats):
ax.plot_date(stats.dates, stats.active_servers, 'g')
# ax.plot_date(stats.dates, stats.players_on_most_active_server, 'black')
ax.plot_date(stats.dates, stats.avg_players_per_active_server, 'gray')
ax.set_ylim(bottom=0)
decorate_axes(ax)
highlight_weekends(stats.dates, ax)
leg = ax.legend(["Active servers", "Average humans per active server"], loc='upper left')
leg.get_frame().set_alpha(0.5)
示例2: plot_totals
# 需要导入模块: from matplotlib.axes import Axes [as 别名]
# 或者: from matplotlib.axes.Axes import plot_date [as 别名]
def plot_totals(ax: Axes, stats: Stats):
ax.plot_date(stats.dates, stats.total_servers, 'g')
ax.plot_date(stats.dates, stats.total_human_players, 'black')
ax.plot_date(stats.dates, stats.total_active_players, 'r')
ax.plot_date(stats.dates, stats.total_spectators, 'orange')
ax.plot_date(stats.dates, stats.total_bots, 'lime')
ax.set_ylim(bottom=0)
decorate_axes(ax)
highlight_weekends(stats.dates, ax)
leg = ax.legend(["Servers", "Human players", "Playing", "Spectating", "Bots"], loc='upper left')
leg.get_frame().set_alpha(0.5)