Python bokeh.plotting.output_notebook() Examples

The following are 5 code examples of bokeh.plotting.output_notebook(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module bokeh.plotting , or try the search function .
Example #1
Source File: test_plot_bokeh.py    From lantern with Apache License 2.0 6 votes vote down vote up
def test_scatter(self):
        with patch('lantern.plotting.plot_bokeh.in_ipynb', create=True) as mock1:
            from bokeh.plotting import output_notebook
            output_notebook()

            import lantern as l
            mock1.return_value = True
            p = l.figure('bokeh')
            df = l.bar()
            p.scatter(df)
            p.show()

    # def test_step(self):
    #     with patch('lantern.plotting.plot_bokeh.in_ipynb', create=True) as mock1:
    #         from bokeh.plotting import output_notebook
    #         output_notebook()

    #         import lantern as l
    #         mock1.return_value = True
    #         p = l.figure('bokeh')
    #         df = l.bar()
    #         p.step(df)
    #         p.show() 
Example #2
Source File: __init__.py    From arviz with Apache License 2.0 5 votes vote down vote up
def output_notebook(*args, **kwargs):
    """Wrap bokeh.plotting.output_notebook."""
    import bokeh.plotting as bkp

    return bkp.output_notebook(*args, **kwargs) 
Example #3
Source File: test_plot_bokeh.py    From lantern with Apache License 2.0 5 votes vote down vote up
def test_area(self):
        with patch('lantern.plotting.plot_bokeh.in_ipynb', create=True) as mock1:
            from bokeh.plotting import output_notebook
            output_notebook()

            import lantern as l
            mock1.return_value = True
            p = l.figure('bokeh')
            df = l.bar()
            p.area(df)
            p.show() 
Example #4
Source File: test_plot_bokeh.py    From lantern with Apache License 2.0 5 votes vote down vote up
def test_bar(self):
        with patch('lantern.plotting.plot_bokeh.in_ipynb', create=True) as mock1:
            from bokeh.plotting import output_notebook
            output_notebook()

            import lantern as l
            mock1.return_value = True
            p = l.figure('bokeh')
            df = l.bar()
            p.bar(df)
            p.show() 
Example #5
Source File: test_plot_bokeh.py    From lantern with Apache License 2.0 5 votes vote down vote up
def test_line(self):
        with patch('lantern.plotting.plot_bokeh.in_ipynb', create=True) as mock1:
            from bokeh.plotting import output_notebook
            output_notebook()

            import lantern as l
            mock1.return_value = True
            p = l.figure('bokeh')
            df = l.bar()
            p.line(df)
            p.show()