예제 #1
0
파일: functional.py 프로젝트: 235/Bokeh
def ggplot(data=None, aes=None):
    obj = GGPlot(dataset=data)
    if aes:
        obj += aes
    if _auto_show:
        obj.show_plot()
    global _plot_object
    _plot_object = obj
    return obj
예제 #2
0
파일: functional.py 프로젝트: dasfaha/bokeh
def ggplot(data=None, aes=None):
    obj = GGPlot(dataset=data)
    if aes:
        obj += aes
    if _auto_show:
        obj.show_plot()
    global _plot_object
    _plot_object = obj
    return obj
예제 #3
0
파일: functional.py 프로젝트: dasfaha/bokeh
def ggplot(data=None, aes=None):
    obj = GGPlot(dataset=data)
    if aes:
        obj += aes
    return obj
예제 #4
0
파일: functional.py 프로젝트: certik/Bokeh
def ggplot(data=None, aes=None):
    obj = GGPlot(dataset=data)
    if aes:
        obj += aes
    obj.show_plot()
    return obj