【问题标题】:"min() arg is an empty sequence" when trying to convert my pandas plot into plotly“min() arg 是一个空序列”当试图将我的熊猫图转换为 plotly
【发布时间】:2016-01-03 22:49:12
【问题描述】:

我在尝试将 pandas 数据框图转换为 plotly 时收到ValueError: min() arg is an empty sequence

这是数据框的示例(带有 NaN):

ttab.loc[:,:"Irish"]

Group   English (British)   Americans (White)   Canadians   Scots   Irish
Year                    
1926    1   2   3   4   5
1946    3   1   2   5   4
1956    3   1   2   7   5
1966    2   1   3   9   5
1977    2   1   3   9   7
1993    2   NaN NaN 6   1
2001    4   1   3   NaN 5
2001*   4   1   3   NaN 5
2012    4   1   3   NaN 6

我做了一个漂亮的情节:

# Time It
import time
begin = time.clock()

# Inline plotting
%matplotlib inline

# Import libraries
import matplotlib
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
import seaborn as sns
from pandas.tools.plotting import scatter_matrix

# (*) To communicate with Plotly's server, sign in with credentials file
import plotly.plotly as py
# (*) Useful Python/Plotly tools
import plotly.tools as tls
# (*) Graph objects to piece together plots
from plotly.graph_objs import *

# Read, clean, slice data here...
# Rename columns, examine, rename groups here...
# Merge, set index, transpose dataframe here....
# Change datatype to float here...
# Define color palette here...
# Now Plot...

# Package all mpl plotting commands inside one function
def plot_mpl_fig():

    # plot parameters
    figsize = (12,12)
    axfontsize = 16
    legfontsize = 14
    labfontsize = 18
    yax = (30,0)
    lw = 2

    # Interpolate NaNs and plot as dashed lines
    ax = ttab.loc[:,:'Asian Indians'].interpolate().plot(color=colorlist, ylim=yax, lw=lw, fontsize=axfontsize, \
                                                     figsize=figsize, style='--')

    # Overplot the measured values with solid lines
    ttab.loc[:,:'Asian Indians'].plot(ax=ax, color=colorlist, ylim=yax, lw=lw, fontsize=axfontsize, figsize=figsize)

    # Legend handling
    lines, labels = ax.get_legend_handles_labels()
    ax.legend(lines[28:], labels[28:], loc='center left', bbox_to_anchor=(-0.3, 0.5), fontsize=legfontsize)

    # Labeling
    plt.xlabel('Year',fontsize=labfontsize)
    plt.ylabel('Rank',fontsize=labfontsize)

# Plot it!
plot_mpl_fig()

# N.B. get matplotlib figure object and assign a variable to it
mpl_fig1 = plt.figure()

然后我尝试按照以下示例进行转换:https://plot.ly/python/matplotlib-to-plotly-tutorial/

快速入门:

>>> import plotly.plotly as py
>>> import matplotlib.pyplot as plt
>>> # auto sign-in with credentials or use py.sign_in()
>>> mpl_fig_obj= plt.figure()
>>> # ... make a matplotlib figure ...
>>> py.plot_mpl(mpl_fig1)                                  # <== ValueError

或第 6.1 节的教程:

# Convert a matplotlib figure object to a Plotly figure object
help(tls.mpl_to_plotly)
py_fig1 = tls.mpl_to_plotly(mpl_fig1, verbose=True)         # <== ValueError
print(py_fig1.to_string())
# Plot a matplotlib figure in Plotly
help(py.iplot_mpl) 
py.iplot_mpl(mpl_fig1, filename='s6_damped_oscillation')    # <== ValueError

任何时候我打电话给plot_mplmpl_to_plotlyiplot_mpl 我都会收到ValueError: min() arg is an empty sequence。我认为这可能与 NaN 有关,但我不知道如何解决这个问题。有什么建议吗?

【问题讨论】:

  • 你能发布完整的堆栈跟踪吗?谢谢。
  • 我遇到了同样的问题,但我有一个解决方法,比如this。如果需要更多自定义,可以阅读here

标签: python pandas matplotlib plotly


【解决方案1】:

看起来 mpl_to_plotly 需要使用 axes.plot(),而不是 plt.plot()。以下代码适用于 Jupyter Notebook。

import plotly.offline as py
from plotly.offline import init_notebook_mode, iplot
import plotly.tools as tls
import matplotlib.pylab as plt
from matplotlib.backends.backend_agg import FigureCanvasAgg as FigureCanvas

init_notebook_mode(connected=True)
fig = plt.Figure()
ax = fig.gca()
x = [-2,0,4,6,7]
y = [q**2-q+3 for q in x]
ax.plot(x,y)
canvas = FigureCanvas(fig)
plotly_fig = tls.mpl_to_plotly(fig)
py.iplot(plotly_fig)

【讨论】:

    【解决方案2】:

    如果其他人遇到此问题,由于 Matplotlib 包中的更改,现在不推荐使用 mpl_to_plotly。我相信您将不得不为此功能找到解决方法。幸运的是,Plotly 具有内置函数来完成 Matplotlib 所做的大部分工作。 https://github.com/plotly/plotly.py/issues/1568

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2022-10-14
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-09-27
      • 1970-01-01
      • 1970-01-01
      • 2017-04-08
      相关资源
      最近更新 更多