📅  最后修改于: 2023-12-03 15:04:21.674000             🧑  作者: Mango
Pandas DataFrame.to_html() 方法是将Pandas DataFrame对象转换为HTML表格格式的方法。
DataFrame.to_html(buf=None, columns=None, col_space=None, header=True, index=True, na_rep='np.NaN', index_names=True, justify=None, max_rows=None, max_cols=None, show_dimensions=False, decimal='.', bold_rows=True, classes=None, escape=True, notebook=False, border=None, table_id=None)
返回一个字符串表示Pandas DataFrame对象的HTML表格。
下面是一个示例DataFrame:
import pandas as pd
import numpy as np
df = pd.DataFrame(np.random.randn(5, 2), columns=['Column A', 'Column B'])
print(df.to_html())
输出结果:
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>Column A</th>
<th>Column B</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>1.403281</td>
<td>0.337191</td>
</tr>
<tr>
<th>1</th>
<td>-1.122991</td>
<td>-1.581233</td>
</tr>
<tr>
<th>2</th>
<td>-0.903530</td>
<td>2.515068</td>
</tr>
<tr>
<th>3</th>
<td>0.021612</td>
<td>-0.779691</td>
</tr>
<tr>
<th>4</th>
<td>-0.776575</td>
<td>1.844849</td>
</tr>
</tbody>
</table>
Pandas DataFrame.to_html() 方法是将Pandas DataFrame对象转换为HTML表格格式的方法。它可以非常方便地生成可视化的数据表并与他人分享。