Example #1
0
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)
Example #2
0
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)
Example #3
0
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)