()
| 120 | print "Saved file %s" % filename |
| 121 | |
| 122 | def load_data_from_files(): |
| 123 | data = [] |
| 124 | # load all files into data |
| 125 | for f in files: |
| 126 | assert os.path.isfile(f) is True |
| 127 | data.append(np.loadtxt(f, comments='#')) |
| 128 | return data |
| 129 | |
| 130 | def set_bar_width_and_offsets(requested_width): |
| 131 | bar_width = requested_width |