标签: python plotly
我试图使用“更新同一表中的列”功能。为此,我需要为每个要计算的列使用不同的ID。但是我使用下面的函数从pandas数据框中创建了数据表。
dash_table.DataTable( id='tableUPPH', columns=[{"name": i, "id": i} for i in tabelaupph2.columns]
如何从熊猫数据框创建的列之后仅更改特定列的ID?
谢谢。