Beispiel #1
0
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
Beispiel #2
0
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
Beispiel #3
0
def ggplot(data=None, aes=None):
    obj = GGPlot(dataset=data)
    if aes:
        obj += aes
    return obj
Beispiel #4
0
def ggplot(data=None, aes=None):
    obj = GGPlot(dataset=data)
    if aes:
        obj += aes
    obj.show_plot()
    return obj