【发布时间】:2014-11-27 14:41:28
【问题描述】:
%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");
无论我在 figsize 中指定什么尺寸,我总是得到一个小尺寸的图... 如何解决?
【问题讨论】:
标签: python matplotlib seaborn