Complete rewrite of dataset class, with (all) the necessary updates

This commit is contained in:
2006-04-24 09:53:07 +00:00
parent 53d0228074
commit a2e4392a72
9 changed files with 426 additions and 234 deletions

View File

@@ -102,9 +102,7 @@ class TestDataFunction(Function):
def run(self, data):
logger.log('notice', 'Injecting foo test data')
x = randn(20,30)
axis_0 = ['rows',[]]
axis_1 = ['cols',[]]
X = dataset.Dataset(x,[axis_0,axis_1])
X = dataset.Dataset(x)
return [X, plots.SinePlot(None)]