Metadata-Version: 2.1
Name: floatview
Version: 0.1.13
Summary: A floatview output widget for JupyterLab + GlueViz Visualization with plotly
Home-page: https://github.com/denphi/jupyterlab-floatview
Author: Project Jupyter contributor
Author-email: denphi@denphi.com
License: BSD
Description: # Floatview Stats
        
        <table>
            <tr>
                <td>Latest Release</td>
                <td>
                    <a href="https://pypi.org/project/floatview/"/>
                    <img src="https://badge.fury.io/py/floatview.svg"/>
                </td>
            </tr>
            <tr>
                <td>PyPI Downloads</td>
                <td>
                    <a href="https://pepy.tech/project/floatview"/>
                    <img src="https://pepy.tech/badge/floatview/month"/>
                </td>
            </tr>
        </table>
        
        # Floatview
        
        A floatview output widget for JupyterLab and a data explorer for glue/iplotly
        
        ## Installation
        
        If you use jupyterlab:
        
        ```bash
        pip install floatview
        jupyter labextension install @jupyterlab/plotly-extension@0.18.2
        jupyter labextension install plotlywidget@0.9.1
        jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.38.1
        jupyter labextension install jupyterlab-floatview@0.1.11
        ```
        
        ## Usage
        
        The floatview widget is used as a context manager, just like ipywidgets' output
        widget.
        
        ```python
        from floatview import Floatview
        from ipywidgets import IntSlider
        
        sc = Floatview(title='Floatview Output', mode='tab-after')
        sl = IntSlider(description='Some slider')
        with sc:
            display(sl)
        ```
        
        
        When a single output is displayed in a Floatview, it is allowed to occupy all of
        the vertical space available. If more content is displayed, the natural height
        is used instead.
        
        The gluemanagerwidget is used as a data/visualization manager for a glue dataset.
        
        ```python
        from floatview import GlueManagerWidget
        from pandas import read_csv
        
        data = read_csv('your_data.csv', index_col=False, usecols=cols)
        gmw = GlueManagerWidget(subtab, modal=True, label="Data")
        ```
        
        ![floatview](floatview.png)
        
Keywords: Jupyter,Widgets,IPython
Platform: Linux
Platform: Mac OS X
Platform: Windows
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Framework :: Jupyter
Description-Content-Type: text/markdown
Provides-Extra: test
Provides-Extra: docs
Provides-Extra: examples
