Power BI中的Python-设置matplotlib箱形图的背景色

时间:2019-04-15 19:45:22

标签: python matplotlib powerbi

我正在Power BI中使用Python绘制箱形图。我已将Power BI报表页面的背景色设置为黄色,并尝试设置python visual的背景色。我目前有以下代码。

matplotlib.rc('axes', facecolor = 'red')
dataset.boxplot(column='daily_return', by='name', grid=False, figsize=(15,4))
matplotlib.pyplot.title('')
matplotlib.pyplot.suptitle('')
matplotlib.pyplot.xlabel('')
matplotlib.pyplot.show()

上面的代码导致下图... python output

可以看出,仍然有一些空白。如何将其变为红色,最终将其更改为Power BI背景色。

不过,如果我可以使背景透明,那将是最好的

3 个答案:

答案 0 :(得分:0)

plt.rcParams ['figure.facecolor'] ='红色'它将使完整无花果具有相同的颜色。

答案 1 :(得分:0)

以下方法起作用了……

matplotlib.rc('savefig', transparent = True)

答案 2 :(得分:0)

plt.rcParams['savefig.facecolor'] = 'grey'

对所有参数进行调试,发现Power Bi正在显示渲染的图像,然后是实时图像。