python
1 2import pandas as pd 3import matplotlib as plot 4%matplotlib inline 5import matplotlib.pyplot as plt 6import numpy as np 7 8x = np.array([9.4, 12.0, 30.8, 17.2, 27.6, 3.0]) 9label = ["family clothes", "casual wear", "working wear", "shoes", "working supplies", "others"] 10colors = ["lightpink", "yellow", "gold", "slateblue", "lightcoral", "thistle"] 11plt.pie(x, labels=label, counterclock=False, startangle=90, colors=colors, wedgeprops={'linewidth': 3, 'edgecolor':"white"}, autopct="%.1f%%") 12
で、作成した円グラフを画像出力したいのですがどうすればよいでしょう?
python
1plt.savefig("img.jpg")
を試しましたが、できません。
よろしくお願いいたします。
あなたの回答
tips
プレビュー