ang files might have more columns
This commit is contained in:
parent
bd6f2a6b5c
commit
09f42a3991
|
@ -138,9 +138,12 @@ class Table():
|
||||||
break
|
break
|
||||||
|
|
||||||
data = np.loadtxt(content)
|
data = np.loadtxt(content)
|
||||||
|
for c in range(data.shape[1]-10):
|
||||||
|
shapes['user_defined{}'.format(c+1)] = (1,)
|
||||||
|
|
||||||
return Table(data,shapes,comments)
|
return Table(data,shapes,comments)
|
||||||
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def labels(self):
|
def labels(self):
|
||||||
return list(self.shapes.keys())
|
return list(self.shapes.keys())
|
||||||
|
|
Loading…
Reference in New Issue