python绘图消除网格 python设置绘图尺寸 方法一 import seaborn as sns import matplotlib.pyplot as plt %matplotlib inline sns.set_style('white')#'darkgrid':网格帮助图作为定量信息的查找表 plt.rcParams['figure.figsize'] = (12, 8)#设置figure_size尺寸 方法二 import matplotlib.pyplot as plt plt.figure() plt.figure(figsize=(12,8))