Beispiel #1
0
def boxplotfunc(plot_details, dataset_filename):
    axis_info = graphs.fetchAxisInfo(plot_details)
    dataset = graphs.load_dataset('boxplot', plot_details, dataset_filename)
    newGraph = graphs.box_plot(dataset, axis_info)
    newGraph.plot_graph()
    newGraph.saveimage(plot_details['user'], plot_details['dataset'])
    return newGraph.plotLocation
Beispiel #2
0
def generateBoxMockPlot():
    axis_info = graphs.fetchAxisInfo('boxplot', '')
    dataset = graphs.load_dataset('boxplot', '')
    newGraph = graphs.box_plot(dataset, axis_info)
    newGraph.plot_graph()
    newGraph.saveimage()
    return newGraph.plotLocation