python 3轴のプロット
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 3轴のプロット相关的知识,希望对你有一定的参考价值。
# https://stackoverflow.com/questions/11640243/pandas-plot-multiple-y-axes
import matplotlib.pyplot as plt
import numpy as np
from pandas import DataFrame
df = DataFrame(np.random.randn(5, 3), columns=['A', 'B', 'C'])
fig, ax = plt.subplots()
ax2, ax3 = ax.twinx(), ax.twinx()
rspine = ax3.spines['right']
rspine.set_position(('axes', 1.25))
ax3.set_frame_on(True)
ax3.patch.set_visible(False)
fig.subplots_adjust(right=0.75)
df.A.plot(ax=ax, style='b-')
df.B.plot(ax=ax2, style='r-', secondary_y=True)
df.C.plot(ax=ax3, style='g-')
## pandasで2軸
df.plot(x=df['A'], secondary_y=['B'])
ax = df.plot()
fig = ax.get_figure()
fig.savefig('test.png')
以上是关于python 3轴のプロット的主要内容,如果未能解决你的问题,请参考以下文章
python 纬度·経度で地図プロットする
r マルチプロット
markdown Ubuntu的のプロキシ设定方法.MD
markdown オブジェクトのプロパティを列挙する
markdown オブジェクトのプロパティの値一覧を出す
markdown オブジェクトのプロパティディスクリプタを设定する