%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\', inde
If you just want to scale the figure use the below code:
import matplotlib.pyplot as plt plt.figure(figsize=(8, 6)) sns.factorplot("MONTH", "VALUE", hue="REGION", data=typessns, kind="box", palette="OrRd"); // OR any plot code