Skip to content

Commit 16e2c20

Browse files
committed
Added few more inspector views to DataSeries and DataFrame
1 parent 956ba51 commit 16e2c20

File tree

8 files changed

+44
-11
lines changed

8 files changed

+44
-11
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
as yet unclassified
1+
gt-inspector-extension
22
gtInspectorBoxplotIn: composite
3-
<gtInspectorPresentationOrder: 0>
3+
<gtInspectorPresentationOrder: 1>
44
<gtInspectorTag: #basic>
55

66
composite roassal2
7-
title: 'Boxplots';
7+
title: 'Boxplot';
88
initializeView: [ self boxplot ]

DataFrame-Core.package/DataFrame.class/instance/gtInspectorDataFrameIn..st renamed to DataFrame-Core.package/DataFrame.class/instance/gtInspectorFastTableIn..st

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
as yet unclassified
2-
gtInspectorDataFrameIn: composite
1+
gt-inspector-extension
2+
gtInspectorFastTableIn: composite
33
<gtInspectorPresentationOrder: 0>
44
<gtInspectorTag: #basic>
55

66
composite morph
7-
title: 'DataFrame';
7+
title: 'Fast Table';
88
display: [ self showWithGlamour ]
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
gt-inspector-extension
2+
gtInspectorHistogramIn: composite
3+
<gtInspectorPresentationOrder: 2>
4+
<gtInspectorTag: #basic>
5+
6+
composite roassal2
7+
title: 'Histogram';
8+
initializeView: [ self histogram ]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
gt-inspector-extension
22
gtInspectorItemsIn: composite
3-
"Hiding Items tab from inspector"
3+
"Hide Items from inspector"
44

5-
^ (composite fastList)
5+
composite fastTable
66
when: [ false ].

DataFrame-Core.package/DataFrame.class/instance/gtInspectorPrettyPrintIn..st

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
as yet unclassified
1+
gt-inspector-extension
22
gtInspectorPrettyPrintIn: composite
3-
<gtInspectorPresentationOrder: 1>
3+
<gtInspectorPresentationOrder: 10>
44
<gtInspectorTag: #basic>
55

66
composite text
7-
title: 'PrettyPrint';
7+
title: 'Pretty Print';
88
display: [
99
| stream |
1010
stream := String new writeStream.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
gt-inspector-extension
2+
gtInspectorScatterplotMatrixIn: composite
3+
<gtInspectorPresentationOrder: 2>
4+
<gtInspectorTag: #basic>
5+
6+
composite roassal2
7+
title: 'Scatterplot Matrix';
8+
initializeView: [ self scatterplotMatrix ];
9+
when: [ false "When fixed" ]
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
as yet unclassified
2+
gtInspectorBoxplotIn: composite
3+
<gtInspectorPresentationOrder: 0>
4+
<gtInspectorTag: #basic>
5+
6+
composite roassal2
7+
title: 'Boxplot';
8+
initializeView: [ self boxplot ]
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
as yet unclassified
2+
gtInspectorScatterplotIn: composite
3+
<gtInspectorPresentationOrder: 1>
4+
<gtInspectorTag: #basic>
5+
6+
composite roassal2
7+
title: 'Scatterplot';
8+
initializeView: [ self scatterplot ]

0 commit comments

Comments
 (0)