Работает ли iplot с версией Python> 2.7 с пакетом запонок? - PullRequest
0 голосов
/ 18 сентября 2018

У меня есть этот код в блокноте jupyter `

   df = cars[['cyl', 'wt', 'mpg']]

   layout = dict(
               title = 'Chart from Pandas DataFrame',
               xaxis = dict(title = 'x-axis'),
               yaxis = dict(title = 'y-axis')
   )

   df.iplot(filename = 'cf-simple-line-chart', layout = layout)`

Набор данных автомобилей можно найти по адресу https://github.com/syedRumman/Python-and-Data-Science.git

Я использую версию Python 3.7.Когда я пытаюсь использовать df.iplot (), я получаю эту ошибку

#The data property of a figure may only be assigned a list or tuple that contains a permutation of a subset of itself
Invalid trace(s) with uid(s): {None} 

Когда я звоню

df.iplot(filename = 'cf-simple-line-chart', layout = layout)

Ошибка

Является ли iplot () несовместимым с библиотекой pandas dataframe в версии> 2.7?

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