我用seaborn绘制小提琴直方图。当我用plt.figure(figsize=(16,10), dpi= 80)
改变音像大小时,木星输出Figure size with 0 Axes
和原来的小提琴音像。
plt.figure(figsize=(16,10), dpi= 80)
sns.catplot(x=" ", y=" ", hue=" ", kind="violin", split=True, data=data)
plt.show()
sns.catplot
有两个参数,"height " aspet",用来改变这个海生图形的图形大小。plt.figure(figsize=(16,10), dpi= 80)
只创建一个空图形,不能改变图形的大小。
"height"one_answers"aspect"的含义如下:
height scalar
Height (in inches) of each facet.
aspect scalar
Aspect ratio of each facet, so that aspect * height gives the width of each facet in inches.
对于你的代码,你可以把它改成
sns.catplot(x=" ", y=" ", hue=" ", kind="violin", split=True, height=8, aspect=1.5, data=data)
plt.show()