0
私はそれが絵2に示すように、情報を表現しようとしているが、結果は私が絵2. 上として国境をプッシュすることができますどのように絵1です
を基本的にここでは `
plot = newData.copy()
del plot['Region']; del plot['Country']; del plot['2016 Rank']
plot.index = range(0, 20)
fig = plt.figure(figsize=(8,4))
plt.title('Springfield')
plt.ylabel('CPI')
plt.yticks(range(20,90,10))
plt.xticks(num.arange(5), ('2012 Score', '2013 Score', '2014 Score', '2015 Score', '2016 Score',))
plt.grid(axis='both', which='major')
for x in plot.values:
plt.plot(x, color='gray', linewidth=1, marker='o', markerfacecolor='gray', markersize=6)
plt.show()
`
使用しているグラフィックライブラリのタグを追加できますか?それは_Matplotlib ** _ですか? –
申し訳ありません。はい、あなたは正しいです。 matplotlib.pyplotをpltとしてインポート – Airat
http://stackoverflow.com/questions/14493334/add-margin-when-plots-run-against-the-edge-of-the-graph/14498142#14498142 – plasmon360