:pandas.DataFrame.to_html()の出力にテーブルIDを挿入する方法は?パンダのデータフレームからHTMLテーブルを生成するために、次のPythonのコードを使用して
の場合:
import pandas as pd
import numpy as np
df = pd.DataFrame(np.zeros((2,2)))
df.to_html()
print(df.to_html())
OUT:
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>0</th>
<th>1</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0.0</td>
<td>0.0</td>
</tr>
<tr>
<th>1</th>
<td>0.0</td>
<td>0.0</td>
</tr>
</tbody>
</table>
にid
を挿入する簡単な方法はありますテーブル開始タグ?
開始タグは次のようになります。
<table id="my_table" border="1" class="dataframe">