ang files might have more columns

This commit is contained in:
Martin Diehl 2020-01-08 15:34:21 +01:00
parent bd6f2a6b5c
commit 09f42a3991
1 changed files with 3 additions and 0 deletions

View File

@ -138,9 +138,12 @@ class Table():
break
data = np.loadtxt(content)
for c in range(data.shape[1]-10):
shapes['user_defined{}'.format(c+1)] = (1,)
return Table(data,shapes,comments)
@property
def labels(self):
return list(self.shapes.keys())