我正在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()
可以看出,仍然有一些空白。如何将其变为红色,最终将其更改为Power BI背景色。
不过,如果我可以使背景透明,那将是最好的。
答案 0 :(得分:0)
plt.rcParams ['figure.facecolor'] ='红色'它将使完整无花果具有相同的颜色。
答案 1 :(得分:0)
以下方法起作用了……
matplotlib.rc('savefig', transparent = True)
答案 2 :(得分:0)
plt.rcParams['savefig.facecolor'] = 'grey'
对所有参数进行调试,发现Power Bi正在显示渲染的图像,然后是实时图像。