def scatter_plot_file(file,x,y,**kwargs): (headers, data) = tm.read_table(file) if not 'name' in kwargs: kwargs['name']=file scatter_plot_data(headers,data,x,y,**kwargs)
def aggr_bar_plot_file(file,x,y,bar_group,group_by_headers,group_by_vals,**kwargs): (headers, data) = tm.read_table(file) if not 'name' in kwargs: kwargs['name']=file aggr_bar_plot_data(headers,data,x,y,bar_group,group_by_headers,group_by_vals,**kwargs)
def bar_plot_file(file,x,y,bar_group,plot_group,**kwargs): (headers, data) = tm.read_table(file) if not 'name' in kwargs: kwargs['name']=file bar_plot_data(headers,data,x,y,bar_group,plot_group,**kwargs)