fixed bug (not clear how it escaped up to now)
This commit is contained in:
parent
ac45a9e2d3
commit
18b791bb63
|
@ -494,7 +494,7 @@ class ASCIItable():
|
|||
1)))
|
||||
use = np.array(columns) if len(columns) > 0 else None
|
||||
|
||||
self.tags = list(np.array(self.tags)[use]) # update labels with valid subset
|
||||
self.tags = list(np.array(self.__IO__['tags'])[use]) # update labels with valid subset
|
||||
|
||||
self.data = np.loadtxt(self.__IO__['in'],usecols=use,ndmin=2)
|
||||
# self.data = np.genfromtxt(self.__IO__['in'],dtype=None,names=self.tags,usecols=use)
|
||||
|
|
Loading…
Reference in New Issue