1

我有以下代码: from pandas_datareader import data as web

import pandas as pd
from datetime import timedelta  
import mplfinance as mpf
import matplotlib as plt
df = web.DataReader('goog','yahoo', start="2021-07-3", end="2021-09-12")
mpf.plot(df, style='charles', type = 'candle', volume=True, figratio=(12,8), bbox_inches='tight')

bbox_inches='tight'正在引发错误:

KeyError: 'Unrecognized kwarg="bbox_inches"'

我怎样才能使利润紧缩?

4

1 回答 1

1

使用 kwarg tight_layout=True

如果这不能满足您的要求,您也可以scale_padding 按照此处所述尝试 kwarg 。

bbox_inches只能与 kwarg savefigkwarg 一起使用。 有关详细信息,请参见此处

于 2021-09-17T14:38:32.003 回答