%pylab inline
import pandas as pd
import numpy as np
import matplotlib as mpl
import seaborn as sns
typessns = pd.DataFrame.from_csv('C:/data/testesns.csv', index_col=False, sep=';')
mpl.rc("figure", figsize=(45, 10))
sns.factorplot("MONTH", "VALUE", hue="REGION", data=typessns, kind="box", palette="OrRd");
如何改變figuresize使用seaborn factorplot
我總是得到一個小尺寸的身影,不管大小我在figsize已經指定... 如何解決呢?
這是唯一適用於我的解決方案。嘗試所有其他人,即使沒有錯誤,該數字仍然顯示爲默認大小和方面(小和方形)。 – szeitlin 2016-10-05 15:44:47