Added a selection view tab, placed next to the "Log" tab. The tab currently

only displays the current selection.
This commit is contained in:
2006-08-07 14:14:42 +00:00
parent 57cb203316
commit b769288b3b
6 changed files with 140 additions and 11 deletions

View File

@@ -110,8 +110,10 @@ class TestDataFunction(workflow.Function):
graph.add_edge(x, y, 3)
ds = dataset.GraphDataset(array(networkx.adj_matrix(graph)))
ds_plot = plots.NetworkPlot(ds)
print ds.get_dim_name()
return [X, ds, plots.SinePlot(), p, ds_plot]
ds_scatter = plots.ScatterPlot(ds, ds, 'rows_0', 'rows_0', '0_1', '0_2')
return [X, ds, plots.SinePlot(), p, ds_plot, ds_scatter]
class DatasetLog(workflow.Function):
def __init__(self):