Return a Pandas DataFrame as a data_table from a callback with Plotly Dash for Python
问题 I would like to read a .csv file and return a groupby function as a callback to be displayed as a simple data table with "dash_table" library. @Lawliet's helpful answer shows how to do that with "dash_table_experiments" library. Here is where I’m stuck: import pandas as pd import dash import dash_core_components as dcc import dash_html_components as html import dash_table from dash.dependencies import Input, Output, State df = pd.read_csv( 'https://gist.githubusercontent.com/chriddyp/'