ValueError: Недопустимые элементы получены для свойства 'data' - PullRequest
0 голосов
/ 02 апреля 2020

Я столкнулся с проблемой с заговором. Я хотел бы отображать разные цифры, но каким-то образом мне не удается добиться того, что я хочу.

Я создал 2 источника данных:

from plotly.graph_objs.scatter import Line
import plotly.graph_objs as go

trace11 = go.Scatter(
    x = [0, 1, 2],
    y = [0, 0, 0],
    line = Line({'color': 'rgb(0, 0, 128)', 'width': 1})
)

trace12 = go.Scatter(
    x=[0, 1, 2],
    y=[1, 1, 1],
    line = Line({'color': 'rgb(128, 0, 0)', 'width': 1})
)

trace21 = go.Scatter(
    x = [0, 1, 2],
    y = [0.5, 0.5, 0.5],
    line = Line({'color': 'rgb(0, 0, 128)', 'width': 1})
)

trace22 = go.Scatter(
    x=[0, 1, 2],
    y=[1.5, 1.5, 1.5],
    line = Line({'color': 'rgb(128, 0, 0)', 'width': 1})
)

data1 = [trace11, trace12]
data2 = [trace21, trace22]

Затем я создал подзаговор с 1 строкой и 2 столбцами и попытался добавить эти данные в подзаговор:

from plotly import tools
fig = tools.make_subplots(rows=1, cols=2)
fig.append_trace(data1, 1, 1)
fig.append_trace(data2, 1, 2)
fig.show()

Это привело к следующей ошибке:

---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-6-ba20e4900d41> in <module>
      1 from plotly import tools
      2 fig = tools.make_subplots(rows=1, cols=2)
----> 3 fig.append_trace(data1, 1, 1)
      4 fig.append_trace(data2, 1, 2)
      5 fig.show()

~\Anaconda3\lib\site-packages\plotly\basedatatypes.py in append_trace(self, trace, row, col)
   1797         )
   1798 
-> 1799         self.add_trace(trace=trace, row=row, col=col)
   1800 
   1801     def _set_trace_grid_position(self, trace, row, col, secondary_y=False):

~\Anaconda3\lib\site-packages\plotly\basedatatypes.py in add_trace(self, trace, row, col, secondary_y)
   1621             rows=[row] if row is not None else None,
   1622             cols=[col] if col is not None else None,
-> 1623             secondary_ys=[secondary_y] if secondary_y is not None else None,
   1624         )
   1625 

~\Anaconda3\lib\site-packages\plotly\basedatatypes.py in add_traces(self, data, rows, cols, secondary_ys)
   1684 
   1685         # Validate traces
-> 1686         data = self._data_validator.validate_coerce(data)
   1687 
   1688         # Set trace indexes

~\Anaconda3\lib\site-packages\_plotly_utils\basevalidators.py in validate_coerce(self, v, skip_invalid)
   2667 
   2668             if invalid_els:
-> 2669                 self.raise_invalid_elements(invalid_els)
   2670 
   2671             v = to_scalar_or_list(res)

~\Anaconda3\lib\site-packages\_plotly_utils\basevalidators.py in raise_invalid_elements(self, invalid_els)
    296                     pname=self.parent_name,
    297                     invalid=invalid_els[:10],
--> 298                     valid_clr_desc=self.description(),
    299                 )
    300             )

ValueError: 
    Invalid element(s) received for the 'data' property of 
        Invalid elements include: [[Scatter({
    'line': {'color': 'rgb(0, 0, 128)', 'width': 1}, 'x': [0, 1, 2], 'y': [0, 0, 0]
}), Scatter({
    'line': {'color': 'rgb(128, 0, 0)', 'width': 1}, 'x': [0, 1, 2], 'y': [1, 1, 1]
})]]

    The 'data' property is a tuple of trace instances
    that may be specified as:
      - A list or tuple of trace instances
        (e.g. [Scatter(...), Bar(...)])
      - A single trace instance
        (e.g. Scatter(...), Bar(...), etc.)
      - A list or tuple of dicts of string/value properties where:
        - The 'type' property specifies the trace type
            One of: ['area', 'bar', 'barpolar', 'box',
                     'candlestick', 'carpet', 'choropleth',
                     'choroplethmapbox', 'cone', 'contour',
                     'contourcarpet', 'densitymapbox', 'funnel',
                     'funnelarea', 'heatmap', 'heatmapgl',
                     'histogram', 'histogram2d',
                     'histogram2dcontour', 'image', 'indicator',
                     'isosurface', 'mesh3d', 'ohlc', 'parcats',
                     'parcoords', 'pie', 'pointcloud', 'sankey',
                     'scatter', 'scatter3d', 'scattercarpet',
                     'scattergeo', 'scattergl', 'scattermapbox',
                     'scatterpolar', 'scatterpolargl',
                     'scatterternary', 'splom', 'streamtube',
                     'sunburst', 'surface', 'table', 'treemap',
                     'violin', 'volume', 'waterfall']

        - All remaining properties are passed to the constructor of
          the specified trace type

        (e.g. [{'type': 'scatter', ...}, {'type': 'bar, ...}])

Возможно, я что-то делаю не так. Что странно, так это то, что мои данные выглядят правильно, поскольку я могу без проблем выполнить следующий код:

fig = go.Figure(data1)
fig.show()

Надеюсь, вы поможете мне найти решение.

Спасибо!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...