We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad8b403 commit 90f2370Copy full SHA for 90f2370
packages/python/plotly/plotly/figure_factory/_gantt.py
@@ -46,7 +46,7 @@ def validate_gantt(df):
46
for index in range(num_of_rows):
47
task_dict = {}
48
for key in df:
49
- task_dict[key] = df.ix[index][key]
+ task_dict[key] = df.iloc[index][key]
50
chart.append(task_dict)
51
52
return chart
0 commit comments