3

我正在尝试在另一个“输出视图”选项卡中显示我的熊猫数据框,如此 iamge 中所示...

https://github.com/quantopian/qgrid/blob/master/docs/images/events_api.gif

我可以使用以下命令安装和尝试 qgrid 的基本功能。但无法获得如上图所示的确切视图。

!pip install qgrid
!jupyter nbextension enable --py --sys-prefix qgrid
!jupyter nbextension enable --py --sys-prefix  widgetsnbextension

import qgrid
import pandas as pd
df = pd.read_csv('some.csv')

qgrid_widget = qgrid.show_grid(df, show_toolbar=True)
qgrid_widget

qgrid_widget.get_changed_df()
4

2 回答 2

7

这些命令应该可以工作:

预安装:

1. Assume you have conda environment called "myenv"
2. Assume you have jupyter-lab installed in that environment

安装新的Conda环境

source activate myenv
pip install qgrid
jupyter labextension install qgrid
jupyter labextension install @jupyter-widgets/jupyterlab-manager
jupyter nbextension enable --py --sys-prefix qgrid
jupyter nbextension enable --py --sys-prefix widgetsnbextension

加载 conda 环境

source activate myenv
jupyter-lab
create a notebook under environment myenv

------------------- 这些只是预安装程序 -------
------------------ - 以下是您在 jupyter 实验室中使用 qgrid 的方法 ----------

# Lets say you have a pandas dataframe `df`
qgrid_widget = qgrid.show_grid(df.head(), show_toolbar=True)
qgrid_widget
qgrid_widget.get_changed_df()

# right click on this cell
# click Create New View for Output # it will create new tab
# You will see the new window of dataframe

确认

我只是按照新环境的程序进行了操作,并且可以正常工作。 在此处输入图像描述

于 2019-04-11T04:49:33.427 回答
3

由于这个问题有一个赏金,我不能将其标记为重复。要dataframe在另一个选项卡中显示,您可以使用一点 JavaScript。根据这篇文章,这是一个代码,它将在另一个标签中显示数据框:

from IPython.display import HTML
def View(df):
    css = """<style>
    table { border-collapse: collapse; border: 3px solid #eee; }
    table tr th:first-child { background-color: #eeeeee; color: #333; font-weight: bold }
    table thead th { background-color: #eee; color: #000; }
    tr, th, td { border: 1px solid #ccc; border-width: 1px 0 0 1px; border-collapse: collapse;
    padding: 3px; font-family: monospace; font-size: 10px }</style>
    """
    s  = '<script type="text/Javascript">'
    s += 'var win = window.open("", "Title", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=780, height=200, top="+(screen.height-400)+", left="+(screen.width-840));'
    s += 'win.document.body.innerHTML = \'' + (df.to_html() + css).replace("\n",'\\') + '\';'
    s += '</script>'
    return(HTML(s+css))

最后,您可以使用该函数来查看这样的数据框:

View(my_dataframe)

这应该在另一个选项卡中打开数据框。

于 2019-04-09T17:34:26.527 回答