Switch to numpy (scipy_version>1.0) changes

This commit is contained in:
2006-08-31 10:04:19 +00:00
parent a0786d521a
commit 0b58c5ea28
3 changed files with 22 additions and 27 deletions

View File

@@ -102,10 +102,10 @@ class TestDataFunction(workflow.Function):
def run(self):
logger.log('notice', 'Injecting foo test data')
x = randn(500,30)
x = randn(5000,4)
X = dataset.Dataset(x)
p = plots.ScatterMarkerPlot(X, X, 'rows', 'rows', '0_1', '0_2',name='p')
p2 = plots.ScatterMarkerPlot(X, X, 'rows', 'rows', '0_1', '0_2',name='p2')
p = plots.ScatterPlot(X, X, 'rows', 'rows', '0_1', '0_2',name='scatter')
p2 = plots.ScatterMarkerPlot(X, X, 'rows', 'rows', '0_1', '0_2',name='marker')
graph = networkx.XGraph()
for x in 'ABCDEF':
for y in 'ADE':