将 pandas Series 传递给 pyplot 的 fill_between() 函数会产生以下错误:
<type 'exceptions.KeyError'> -1
但是,其他 pyplot 函数似乎可以将 Series 作为输入(plot() 和 scatter() 似乎可以正常工作)。我知道这个问题可以通过传递 my_series.value 而不是 my_series 来解决,但是有人可以解释为什么某些 pyplot 绘图函数似乎可以将 Series 作为输入,而其他函数则不行?给定 Series 时哪些函数会崩溃?谢谢。