通过HTML发布一个大熊猫透视表(Publishing a pandas pivot table v

2019-10-23 20:57发布

有没有人发布熊猫透视表到HTML页面的经验吗? 其简单的发布列表作为一个表,但我不知道一个大熊猫支点的语法。 在现在这样的总线生病后一些代码时,我得到

谢谢

Answer 1:

数据透视表不是别的,只是一个数据帧,因此它具有to_html()在文档中描述的方法在这里

为表直接输出HTML代码,例如,用这种非常简单的数据帧:

In [1]: df
Out[1]:
    A   B
0   0   1
1   2   3

In [2]: print df.to_html()
Out[2]:

<table border="1" class="dataframe">
  <thead>
    <tr style="text-align: right;">
      <th></th>
      <th>A</th>
      <th>B</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th>0</th>
      <td>0</td>
      <td>1</td>
    </tr>
    <tr>
      <th>1</th>
      <td>2</td>
      <td>3</td>
    </tr>
  </tbody>
</table>


文章来源: Publishing a pandas pivot table via html