pandas.styler类型为可导出表以及如何创建仪表板来显示这些表?

时间:2016-11-24 13:42:01

标签: pandas ipython-notebook

我创建了一个带有条件颜色编码的表。但它在

$(function() {
  var $table = $('table');

  $('.download').click(function() {
    $table.trigger('outputTable');
  });

  $table.tablesorter({
    theme: 'blue',
    widgets: ['zebra', 'output'],
    widgetOptions: {
      output_delivery: 'd',
      output_separator: ';',
      output_formatContent: function(c, wo, data) {
        if (c.parsers[data.$cell['0'].cellIndex].type !== 'numeric')
          return data.content;
        return data.content.replace(/\./ig, ',');
      }
    }
  });
});

format.Now我想以完全相同的方式将其导出到网页或仪表板。如果我使用to_html()导出,它与样式格式不同。如何cN我完全按照pandas.formats.style.Styler格式显示它。 以及将这些表放在仪表板中的最佳方法是什么。有什么建议吗?

尝试使用散景,但没有将此格式作为输入。

0 个答案:

没有答案