Seaborn色料酿造商无法互动

时间:2018-10-25 18:54:33

标签: python seaborn colorbrewer

我正在尝试在Jupyter中使用Seaborn的交互式色彩调制器工具,但是我正在努力弄清楚如何以交互方式使用它。目前,它只是为我提供默认值。

Seaborn color brewer

1 个答案:

答案 0 :(得分:1)

Seaborn的交互式choose_colorbrewer_palette工具需要ipywidgets(或IPython.html.widgets)。为了能够在jupyter中使用这些小部件,您需要激活它们

jupyter nbextension enable --py widgetsnbextension

要在jupyter 实验室中使用,您还需要安装JupyterLab Extension

jupyter labextension install @jupyter-widgets/jupyterlab-manager

这需要安装nodejs

因此,在conda中进行完整安装可能看起来像

> conda install seaborn juypter jupyterlab ipywidgets nodejs
> jupyter nbextension enable --py widgetsnbextension
> jupyter labextension install @jupyter-widgets/jupyterlab-manager

开始的Jupyter实验室

> juypter lab

并按要求输入问题代码。

enter image description here