list - Plotting a table/chart/grid in Python -


assume user inputs file. format like:

name\t182909876\n name 2\t090090090\n etc... 

i want plot data onto chart, grid, or table.

data_list = [] infile f:     data = [map(str, line.split('\t')) line in f] 

matplotlib need plot numbers. seeing code above generates nested lists of strings, might have improvise ..


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -