nlptoolkit-classification 1.0.8 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (178) hide show
  1. package/dist/Attribute/Attribute.js +6 -16
  2. package/dist/Attribute/Attribute.js.map +1 -1
  3. package/dist/Attribute/AttributeType.js +22 -32
  4. package/dist/Attribute/AttributeType.js.map +1 -1
  5. package/dist/Attribute/BinaryAttribute.js +14 -24
  6. package/dist/Attribute/BinaryAttribute.js.map +1 -1
  7. package/dist/Attribute/ContinuousAttribute.js +46 -55
  8. package/dist/Attribute/ContinuousAttribute.js.map +1 -1
  9. package/dist/Attribute/DiscreteAttribute.js +38 -48
  10. package/dist/Attribute/DiscreteAttribute.js.map +1 -1
  11. package/dist/Attribute/DiscreteIndexedAttribute.js +47 -55
  12. package/dist/Attribute/DiscreteIndexedAttribute.js.map +1 -1
  13. package/dist/DataSet/DataDefinition.js +115 -123
  14. package/dist/DataSet/DataDefinition.js.map +1 -1
  15. package/dist/DataSet/DataSet.js +268 -245
  16. package/dist/DataSet/DataSet.js.map +1 -1
  17. package/dist/DistanceMetric/DistanceMetric.js +2 -12
  18. package/dist/DistanceMetric/EuclidianDistance.js +27 -37
  19. package/dist/DistanceMetric/EuclidianDistance.js.map +1 -1
  20. package/dist/DistanceMetric/MahalanobisDistance.js +27 -36
  21. package/dist/DistanceMetric/MahalanobisDistance.js.map +1 -1
  22. package/dist/Experiment/BootstrapRun.js +31 -40
  23. package/dist/Experiment/BootstrapRun.js.map +1 -1
  24. package/dist/Experiment/Experiment.js +46 -53
  25. package/dist/Experiment/Experiment.js.map +1 -1
  26. package/dist/Experiment/KFoldRun.js +45 -54
  27. package/dist/Experiment/KFoldRun.js.map +1 -1
  28. package/dist/Experiment/KFoldRunSeparateTest.js +48 -58
  29. package/dist/Experiment/KFoldRunSeparateTest.js.map +1 -1
  30. package/dist/Experiment/MultipleRun.js +2 -12
  31. package/dist/Experiment/MxKFoldRun.js +31 -40
  32. package/dist/Experiment/MxKFoldRun.js.map +1 -1
  33. package/dist/Experiment/MxKFoldRunSeparateTest.js +35 -44
  34. package/dist/Experiment/MxKFoldRunSeparateTest.js.map +1 -1
  35. package/dist/Experiment/SingleRun.js +2 -12
  36. package/dist/Experiment/SingleRunWithK.js +39 -48
  37. package/dist/Experiment/SingleRunWithK.js.map +1 -1
  38. package/dist/Experiment/StratifiedKFoldRun.js +26 -36
  39. package/dist/Experiment/StratifiedKFoldRun.js.map +1 -1
  40. package/dist/Experiment/StratifiedKFoldRunSeparateTest.js +30 -40
  41. package/dist/Experiment/StratifiedKFoldRunSeparateTest.js.map +1 -1
  42. package/dist/Experiment/StratifiedMxKFoldRun.js +29 -39
  43. package/dist/Experiment/StratifiedMxKFoldRun.js.map +1 -1
  44. package/dist/Experiment/StratifiedMxKFoldRunSeparateTest.js +34 -43
  45. package/dist/Experiment/StratifiedMxKFoldRunSeparateTest.js.map +1 -1
  46. package/dist/Experiment/StratifiedSingleRunWithK.js +27 -36
  47. package/dist/Experiment/StratifiedSingleRunWithK.js.map +1 -1
  48. package/dist/FeatureSelection/BackwardSelection.js +26 -36
  49. package/dist/FeatureSelection/BackwardSelection.js.map +1 -1
  50. package/dist/FeatureSelection/FeatureSubSet.js +72 -82
  51. package/dist/FeatureSelection/FeatureSubSet.js.map +1 -1
  52. package/dist/FeatureSelection/FloatingSelection.js +25 -35
  53. package/dist/FeatureSelection/FloatingSelection.js.map +1 -1
  54. package/dist/FeatureSelection/ForwardSelection.js +25 -35
  55. package/dist/FeatureSelection/ForwardSelection.js.map +1 -1
  56. package/dist/FeatureSelection/SubSetSelection.js +69 -78
  57. package/dist/FeatureSelection/SubSetSelection.js.map +1 -1
  58. package/dist/Filter/DiscreteToContinuous.js +50 -60
  59. package/dist/Filter/DiscreteToContinuous.js.map +1 -1
  60. package/dist/Filter/DiscreteToIndexed.js +40 -50
  61. package/dist/Filter/DiscreteToIndexed.js.map +1 -1
  62. package/dist/Filter/FeatureFilter.js +23 -32
  63. package/dist/Filter/FeatureFilter.js.map +1 -1
  64. package/dist/Filter/LaryFilter.js +46 -55
  65. package/dist/Filter/LaryFilter.js.map +1 -1
  66. package/dist/Filter/LaryToBinary.js +48 -58
  67. package/dist/Filter/LaryToBinary.js.map +1 -1
  68. package/dist/Filter/Normalize.js +33 -41
  69. package/dist/Filter/Normalize.js.map +1 -1
  70. package/dist/Filter/Pca.js +86 -96
  71. package/dist/Filter/Pca.js.map +1 -1
  72. package/dist/Filter/TrainedFeatureFilter.js +14 -24
  73. package/dist/Filter/TrainedFeatureFilter.js.map +1 -1
  74. package/dist/Instance/CompositeInstance.js +46 -56
  75. package/dist/Instance/CompositeInstance.js.map +1 -1
  76. package/dist/Instance/Instance.js +145 -154
  77. package/dist/Instance/Instance.js.map +1 -1
  78. package/dist/InstanceList/InstanceList.js +466 -443
  79. package/dist/InstanceList/InstanceList.js.map +1 -1
  80. package/dist/InstanceList/InstanceListOfSameClass.js +23 -32
  81. package/dist/InstanceList/InstanceListOfSameClass.js.map +1 -1
  82. package/dist/InstanceList/Partition.js +167 -177
  83. package/dist/InstanceList/Partition.js.map +1 -1
  84. package/dist/Model/DecisionTree/DecisionCondition.js +71 -80
  85. package/dist/Model/DecisionTree/DecisionCondition.js.map +1 -1
  86. package/dist/Model/DecisionTree/DecisionNode.js +302 -311
  87. package/dist/Model/DecisionTree/DecisionNode.js.map +1 -1
  88. package/dist/Model/DecisionTree/DecisionStump.js +22 -32
  89. package/dist/Model/DecisionTree/DecisionStump.js.map +1 -1
  90. package/dist/Model/DecisionTree/DecisionTree.js +89 -98
  91. package/dist/Model/DecisionTree/DecisionTree.js.map +1 -1
  92. package/dist/Model/DummyModel.js +64 -73
  93. package/dist/Model/DummyModel.js.map +1 -1
  94. package/dist/Model/Ensemble/BaggingModel.js +34 -44
  95. package/dist/Model/Ensemble/BaggingModel.js.map +1 -1
  96. package/dist/Model/Ensemble/RandomForestModel.js +31 -41
  97. package/dist/Model/Ensemble/RandomForestModel.js.map +1 -1
  98. package/dist/Model/Ensemble/TreeEnsembleModel.js +55 -64
  99. package/dist/Model/Ensemble/TreeEnsembleModel.js.map +1 -1
  100. package/dist/Model/Model.js +130 -140
  101. package/dist/Model/Model.js.map +1 -1
  102. package/dist/Model/NeuralNetwork/DeepNetworkModel.js +162 -169
  103. package/dist/Model/NeuralNetwork/DeepNetworkModel.js.map +1 -1
  104. package/dist/Model/NeuralNetwork/LinearPerceptronModel.js +69 -78
  105. package/dist/Model/NeuralNetwork/LinearPerceptronModel.js.map +1 -1
  106. package/dist/Model/NeuralNetwork/MultiLayerPerceptronModel.js +112 -120
  107. package/dist/Model/NeuralNetwork/MultiLayerPerceptronModel.js.map +1 -1
  108. package/dist/Model/NeuralNetwork/NeuralNetworkModel.js +197 -201
  109. package/dist/Model/NeuralNetwork/NeuralNetworkModel.js.map +1 -1
  110. package/dist/Model/NonParametric/KnnInstance.js +21 -29
  111. package/dist/Model/NonParametric/KnnInstance.js.map +1 -1
  112. package/dist/Model/NonParametric/KnnModel.js +101 -108
  113. package/dist/Model/NonParametric/KnnModel.js.map +1 -1
  114. package/dist/Model/Parametric/GaussianModel.js +82 -91
  115. package/dist/Model/Parametric/GaussianModel.js.map +1 -1
  116. package/dist/Model/Parametric/KMeansModel.js +59 -67
  117. package/dist/Model/Parametric/KMeansModel.js.map +1 -1
  118. package/dist/Model/Parametric/LdaModel.js +83 -91
  119. package/dist/Model/Parametric/LdaModel.js.map +1 -1
  120. package/dist/Model/Parametric/NaiveBayesModel.js +119 -132
  121. package/dist/Model/Parametric/NaiveBayesModel.js.map +1 -1
  122. package/dist/Model/Parametric/QdaModel.js +70 -79
  123. package/dist/Model/Parametric/QdaModel.js.map +1 -1
  124. package/dist/Model/RandomModel.js +85 -92
  125. package/dist/Model/RandomModel.js.map +1 -1
  126. package/dist/Model/ValidatedModel.js +21 -31
  127. package/dist/Model/ValidatedModel.js.map +1 -1
  128. package/dist/Parameter/ActivationFunction.js +9 -19
  129. package/dist/Parameter/ActivationFunction.js.map +1 -1
  130. package/dist/Parameter/BaggingParameter.js +24 -33
  131. package/dist/Parameter/BaggingParameter.js.map +1 -1
  132. package/dist/Parameter/C45Parameter.js +34 -42
  133. package/dist/Parameter/C45Parameter.js.map +1 -1
  134. package/dist/Parameter/DeepNetworkParameter.js +48 -56
  135. package/dist/Parameter/DeepNetworkParameter.js.map +1 -1
  136. package/dist/Parameter/KMeansParameter.js +29 -38
  137. package/dist/Parameter/KMeansParameter.js.map +1 -1
  138. package/dist/Parameter/KnnParameter.js +25 -34
  139. package/dist/Parameter/KnnParameter.js.map +1 -1
  140. package/dist/Parameter/LinearPerceptronParameter.js +56 -62
  141. package/dist/Parameter/LinearPerceptronParameter.js.map +1 -1
  142. package/dist/Parameter/MultiLayerPerceptronParameter.js +38 -46
  143. package/dist/Parameter/MultiLayerPerceptronParameter.js.map +1 -1
  144. package/dist/Parameter/Parameter.js +21 -30
  145. package/dist/Parameter/Parameter.js.map +1 -1
  146. package/dist/Parameter/RandomForestParameter.js +25 -34
  147. package/dist/Parameter/RandomForestParameter.js.map +1 -1
  148. package/dist/Performance/ClassificationPerformance.js +24 -33
  149. package/dist/Performance/ClassificationPerformance.js.map +1 -1
  150. package/dist/Performance/ConfusionMatrix.js +149 -158
  151. package/dist/Performance/ConfusionMatrix.js.map +1 -1
  152. package/dist/Performance/DetailedClassificationPerformance.js +23 -32
  153. package/dist/Performance/DetailedClassificationPerformance.js.map +1 -1
  154. package/dist/Performance/ExperimentPerformance.js +184 -161
  155. package/dist/Performance/ExperimentPerformance.js.map +1 -1
  156. package/dist/Performance/Performance.js +21 -30
  157. package/dist/Performance/Performance.js.map +1 -1
  158. package/dist/StatisticalTest/Combined5x2F.js +41 -51
  159. package/dist/StatisticalTest/Combined5x2F.js.map +1 -1
  160. package/dist/StatisticalTest/Combined5x2t.js +42 -52
  161. package/dist/StatisticalTest/Combined5x2t.js.map +1 -1
  162. package/dist/StatisticalTest/Paired5x2t.js +40 -50
  163. package/dist/StatisticalTest/Paired5x2t.js.map +1 -1
  164. package/dist/StatisticalTest/PairedTest.js +31 -41
  165. package/dist/StatisticalTest/PairedTest.js.map +1 -1
  166. package/dist/StatisticalTest/Pairedt.js +38 -48
  167. package/dist/StatisticalTest/Pairedt.js.map +1 -1
  168. package/dist/StatisticalTest/Sign.js +50 -60
  169. package/dist/StatisticalTest/Sign.js.map +1 -1
  170. package/dist/StatisticalTest/StatisticalTestResult.js +65 -73
  171. package/dist/StatisticalTest/StatisticalTestResult.js.map +1 -1
  172. package/dist/StatisticalTest/StatisticalTestResultType.js +11 -21
  173. package/dist/StatisticalTest/StatisticalTestResultType.js.map +1 -1
  174. package/dist/index.js +95 -101
  175. package/dist/index.js.map +1 -1
  176. package/package.json +7 -6
  177. package/tsconfig.json +4 -3
  178. package/source/tsconfig.json +0 -13
@@ -1,134 +1,126 @@
1
- (function (factory) {
2
- if (typeof module === "object" && typeof module.exports === "object") {
3
- var v = factory(require, exports);
4
- if (v !== undefined) module.exports = v;
5
- }
6
- else if (typeof define === "function" && define.amd) {
7
- define(["require", "exports", "../Attribute/AttributeType"], factory);
8
- }
9
- })(function (require, exports) {
10
- "use strict";
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.DataDefinition = void 0;
13
- const AttributeType_1 = require("../Attribute/AttributeType");
14
- class DataDefinition {
15
- /**
16
- * Constructor for creating a new {@link DataDefinition} with given attribute types.
17
- *
18
- * @param attributeTypes Attribute types of the data definition.
19
- * @param attributeValueList Array of array of strings to represent all possible values of discrete features.
20
- */
21
- constructor(attributeTypes, attributeValueList) {
22
- if (attributeTypes != undefined) {
23
- this.attributeTypes = attributeTypes;
24
- if (attributeValueList != undefined) {
25
- this.attributeValueList = attributeValueList;
26
- }
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DataDefinition = void 0;
4
+ const AttributeType_1 = require("../Attribute/AttributeType");
5
+ class DataDefinition {
6
+ attributeTypes;
7
+ attributeValueList;
8
+ /**
9
+ * Constructor for creating a new {@link DataDefinition} with given attribute types.
10
+ *
11
+ * @param attributeTypes Attribute types of the data definition.
12
+ * @param attributeValueList Array of array of strings to represent all possible values of discrete features.
13
+ */
14
+ constructor(attributeTypes, attributeValueList) {
15
+ if (attributeTypes != undefined) {
16
+ this.attributeTypes = attributeTypes;
17
+ if (attributeValueList != undefined) {
18
+ this.attributeValueList = attributeValueList;
27
19
  }
28
20
  }
29
- /**
30
- * Returns number of distinct values for a given discrete attribute with index attributeIndex.
31
- * @param attributeIndex Index of the discrete attribute.
32
- * @return Number of distinct values for a given discrete attribute
33
- */
34
- numberOfValues(attributeIndex) {
35
- return this.attributeValueList[attributeIndex].length;
36
- }
37
- /**
38
- * Returns the index of the given value in the values list of the attributeIndex'th discrete attribute.
39
- * @param attributeIndex Index of the discrete attribute.
40
- * @param value Value of the discrete attribute
41
- * @return Index of the given value in the values list of the discrete attribute.
42
- */
43
- featureValueIndex(attributeIndex, value) {
44
- for (let i = 0; i < this.attributeValueList[attributeIndex].length; i++) {
45
- if (this.attributeValueList[attributeIndex][i] == value) {
46
- return i;
47
- }
21
+ }
22
+ /**
23
+ * Returns number of distinct values for a given discrete attribute with index attributeIndex.
24
+ * @param attributeIndex Index of the discrete attribute.
25
+ * @return Number of distinct values for a given discrete attribute
26
+ */
27
+ numberOfValues(attributeIndex) {
28
+ return this.attributeValueList[attributeIndex].length;
29
+ }
30
+ /**
31
+ * Returns the index of the given value in the values list of the attributeIndex'th discrete attribute.
32
+ * @param attributeIndex Index of the discrete attribute.
33
+ * @param value Value of the discrete attribute
34
+ * @return Index of the given value in the values list of the discrete attribute.
35
+ */
36
+ featureValueIndex(attributeIndex, value) {
37
+ for (let i = 0; i < this.attributeValueList[attributeIndex].length; i++) {
38
+ if (this.attributeValueList[attributeIndex][i] == value) {
39
+ return i;
48
40
  }
49
- return -1;
50
41
  }
51
- /**
52
- * Returns the number of attribute types.
53
- *
54
- * @return Number of attribute types.
55
- */
56
- attributeCount() {
57
- return this.attributeTypes.length;
58
- }
59
- /**
60
- * Counts the occurrences of binary and discrete type attributes.
61
- *
62
- * @return Count of binary and discrete type attributes.
63
- */
64
- discreteAttributeCount() {
65
- let count = 0;
66
- for (let attributeType of this.attributeTypes) {
67
- if (attributeType == AttributeType_1.AttributeType.DISCRETE || attributeType == AttributeType_1.AttributeType.BINARY) {
68
- count++;
69
- }
42
+ return -1;
43
+ }
44
+ /**
45
+ * Returns the number of attribute types.
46
+ *
47
+ * @return Number of attribute types.
48
+ */
49
+ attributeCount() {
50
+ return this.attributeTypes.length;
51
+ }
52
+ /**
53
+ * Counts the occurrences of binary and discrete type attributes.
54
+ *
55
+ * @return Count of binary and discrete type attributes.
56
+ */
57
+ discreteAttributeCount() {
58
+ let count = 0;
59
+ for (let attributeType of this.attributeTypes) {
60
+ if (attributeType == AttributeType_1.AttributeType.DISCRETE || attributeType == AttributeType_1.AttributeType.BINARY) {
61
+ count++;
70
62
  }
71
- return count;
72
63
  }
73
- /**
74
- * Counts the occurrences of binary and continuous type attributes.
75
- *
76
- * @return Count of of binary and continuous type attributes.
77
- */
78
- continuousAttributeCount() {
79
- let count = 0;
80
- for (let attributeType of this.attributeTypes) {
81
- if (attributeType == AttributeType_1.AttributeType.CONTINUOUS) {
82
- count++;
83
- }
64
+ return count;
65
+ }
66
+ /**
67
+ * Counts the occurrences of binary and continuous type attributes.
68
+ *
69
+ * @return Count of of binary and continuous type attributes.
70
+ */
71
+ continuousAttributeCount() {
72
+ let count = 0;
73
+ for (let attributeType of this.attributeTypes) {
74
+ if (attributeType == AttributeType_1.AttributeType.CONTINUOUS) {
75
+ count++;
84
76
  }
85
- return count;
86
- }
87
- /**
88
- * Returns the attribute type of the corresponding item at given index.
89
- *
90
- * @param index Index of the attribute type.
91
- * @return Attribute type of the corresponding item at given index.
92
- */
93
- getAttributeType(index) {
94
- return this.attributeTypes[index];
95
77
  }
96
- /**
97
- * Adds an attribute type to the list of attribute types.
98
- *
99
- * @param attributeType Attribute type to add to the list of attribute types.
100
- */
101
- addAttribute(attributeType) {
102
- this.attributeTypes.push(attributeType);
103
- }
104
- /**
105
- * Removes the attribute type at given index from the list of attributes.
106
- *
107
- * @param index Index to remove attribute type from list.
108
- */
109
- removeAttribute(index) {
110
- this.attributeTypes.splice(index, 1);
111
- }
112
- /**
113
- * Clears all the attribute types from list.
114
- */
115
- removeAllAttributes() {
116
- this.attributeTypes = new Array();
117
- }
118
- /**
119
- * Generates new subset of attribute types by using given feature subset.
120
- *
121
- * @param featureSubSet {@link FeatureSubSet} input.
122
- * @return DataDefinition with new subset of attribute types.
123
- */
124
- getSubSetOfFeatures(featureSubSet) {
125
- let newAttributeTypes = new Array();
126
- for (let i = 0; i < featureSubSet.size(); i++) {
127
- newAttributeTypes.push(this.attributeTypes[featureSubSet.get(i)]);
128
- }
129
- return new DataDefinition(newAttributeTypes);
78
+ return count;
79
+ }
80
+ /**
81
+ * Returns the attribute type of the corresponding item at given index.
82
+ *
83
+ * @param index Index of the attribute type.
84
+ * @return Attribute type of the corresponding item at given index.
85
+ */
86
+ getAttributeType(index) {
87
+ return this.attributeTypes[index];
88
+ }
89
+ /**
90
+ * Adds an attribute type to the list of attribute types.
91
+ *
92
+ * @param attributeType Attribute type to add to the list of attribute types.
93
+ */
94
+ addAttribute(attributeType) {
95
+ this.attributeTypes.push(attributeType);
96
+ }
97
+ /**
98
+ * Removes the attribute type at given index from the list of attributes.
99
+ *
100
+ * @param index Index to remove attribute type from list.
101
+ */
102
+ removeAttribute(index) {
103
+ this.attributeTypes.splice(index, 1);
104
+ }
105
+ /**
106
+ * Clears all the attribute types from list.
107
+ */
108
+ removeAllAttributes() {
109
+ this.attributeTypes = new Array();
110
+ }
111
+ /**
112
+ * Generates new subset of attribute types by using given feature subset.
113
+ *
114
+ * @param featureSubSet {@link FeatureSubSet} input.
115
+ * @return DataDefinition with new subset of attribute types.
116
+ */
117
+ getSubSetOfFeatures(featureSubSet) {
118
+ let newAttributeTypes = new Array();
119
+ for (let i = 0; i < featureSubSet.size(); i++) {
120
+ newAttributeTypes.push(this.attributeTypes[featureSubSet.get(i)]);
130
121
  }
122
+ return new DataDefinition(newAttributeTypes);
131
123
  }
132
- exports.DataDefinition = DataDefinition;
133
- });
124
+ }
125
+ exports.DataDefinition = DataDefinition;
134
126
  //# sourceMappingURL=DataDefinition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"DataDefinition.js","sourceRoot":"","sources":["../../source/DataSet/DataDefinition.ts"],"names":[],"mappings":";;;;;;;;;;;;IAAA,8DAAyD;IAGzD,MAAa,cAAc;QAKvB;;;;;WAKG;QACH,YAAY,cAAqC,EAAE,kBAAyC;YACxF,IAAI,cAAc,IAAI,SAAS,EAAC;gBAC5B,IAAI,CAAC,cAAc,GAAG,cAAc,CAAA;gBACpC,IAAI,kBAAkB,IAAI,SAAS,EAAC;oBAChC,IAAI,CAAC,kBAAkB,GAAG,kBAAkB,CAAC;iBAChD;aACJ;QACL,CAAC;QAED;;;;WAIG;QACH,cAAc,CAAC,cAAsB;YACjC,OAAO,IAAI,CAAC,kBAAkB,CAAC,cAAc,CAAC,CAAC,MAAM,CAAA;QACzD,CAAC;QAED;;;;;WAKG;QACH,iBAAiB,CAAC,cAAsB,EAAE,KAAa;YACnD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,kBAAkB,CAAC,cAAc,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,EAAC;gBACpE,IAAI,IAAI,CAAC,kBAAkB,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,EAAC;oBACpD,OAAO,CAAC,CAAA;iBACX;aACJ;YACD,OAAO,CAAC,CAAC,CAAA;QACb,CAAC;QAED;;;;WAIG;QACH,cAAc;YACV,OAAO,IAAI,CAAC,cAAc,CAAC,MAAM,CAAA;QACrC,CAAC;QAED;;;;WAIG;QACH,sBAAsB;YAClB,IAAI,KAAK,GAAG,CAAC,CAAC;YACd,KAAK,IAAI,aAAa,IAAI,IAAI,CAAC,cAAc,EAAE;gBAC3C,IAAI,aAAa,IAAI,6BAAa,CAAC,QAAQ,IAAI,aAAa,IAAI,6BAAa,CAAC,MAAM,EAAE;oBAClF,KAAK,EAAE,CAAC;iBACX;aACJ;YACD,OAAO,KAAK,CAAC;QACjB,CAAC;QAED;;;;WAIG;QACH,wBAAwB;YACpB,IAAI,KAAK,GAAG,CAAC,CAAC;YACd,KAAK,IAAI,aAAa,IAAI,IAAI,CAAC,cAAc,EAAE;gBAC3C,IAAI,aAAa,IAAI,6BAAa,CAAC,UAAU,EAAE;oBAC3C,KAAK,EAAE,CAAC;iBACX;aACJ;YACD,OAAO,KAAK,CAAC;QACjB,CAAC;QAED;;;;;WAKG;QACH,gBAAgB,CAAC,KAAa;YAC1B,OAAO,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAA;QACrC,CAAC;QAED;;;;WAIG;QACH,YAAY,CAAC,aAA4B;YACrC,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,aAAa,CAAC,CAAA;QAC3C,CAAC;QAED;;;;WAIG;QACH,eAAe,CAAC,KAAa;YACzB,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;QACxC,CAAC;QAED;;WAEG;QACH,mBAAmB;YACf,IAAI,CAAC,cAAc,GAAG,IAAI,KAAK,EAAiB,CAAA;QACpD,CAAC;QAED;;;;;WAKG;QACH,mBAAmB,CAAC,aAA4B;YAC5C,IAAI,iBAAiB,GAAG,IAAI,KAAK,EAAiB,CAAC;YACnD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,EAAE;gBAC3C,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;aACrE;YACD,OAAO,IAAI,cAAc,CAAC,iBAAiB,CAAC,CAAC;QACjD,CAAC;KACJ;IAnID,wCAmIC"}
1
+ {"version":3,"file":"DataDefinition.js","sourceRoot":"","sources":["../../source/DataSet/DataDefinition.ts"],"names":[],"mappings":";;;AAAA,8DAAyD;AAGzD,MAAa,cAAc;IAEf,cAAc,CAAsB;IAC3B,kBAAkB,CAAsB;IAEzD;;;;;OAKG;IACH,YAAY,cAAqC,EAAE,kBAAyC;QACxF,IAAI,cAAc,IAAI,SAAS,EAAC,CAAC;YAC7B,IAAI,CAAC,cAAc,GAAG,cAAc,CAAA;YACpC,IAAI,kBAAkB,IAAI,SAAS,EAAC,CAAC;gBACjC,IAAI,CAAC,kBAAkB,GAAG,kBAAkB,CAAC;YACjD,CAAC;QACL,CAAC;IACL,CAAC;IAED;;;;OAIG;IACH,cAAc,CAAC,cAAsB;QACjC,OAAO,IAAI,CAAC,kBAAkB,CAAC,cAAc,CAAC,CAAC,MAAM,CAAA;IACzD,CAAC;IAED;;;;;OAKG;IACH,iBAAiB,CAAC,cAAsB,EAAE,KAAa;QACnD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,kBAAkB,CAAC,cAAc,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,EAAC,CAAC;YACrE,IAAI,IAAI,CAAC,kBAAkB,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,EAAC,CAAC;gBACrD,OAAO,CAAC,CAAA;YACZ,CAAC;QACL,CAAC;QACD,OAAO,CAAC,CAAC,CAAA;IACb,CAAC;IAED;;;;OAIG;IACH,cAAc;QACV,OAAO,IAAI,CAAC,cAAc,CAAC,MAAM,CAAA;IACrC,CAAC;IAED;;;;OAIG;IACH,sBAAsB;QAClB,IAAI,KAAK,GAAG,CAAC,CAAC;QACd,KAAK,IAAI,aAAa,IAAI,IAAI,CAAC,cAAc,EAAE,CAAC;YAC5C,IAAI,aAAa,IAAI,6BAAa,CAAC,QAAQ,IAAI,aAAa,IAAI,6BAAa,CAAC,MAAM,EAAE,CAAC;gBACnF,KAAK,EAAE,CAAC;YACZ,CAAC;QACL,CAAC;QACD,OAAO,KAAK,CAAC;IACjB,CAAC;IAED;;;;OAIG;IACH,wBAAwB;QACpB,IAAI,KAAK,GAAG,CAAC,CAAC;QACd,KAAK,IAAI,aAAa,IAAI,IAAI,CAAC,cAAc,EAAE,CAAC;YAC5C,IAAI,aAAa,IAAI,6BAAa,CAAC,UAAU,EAAE,CAAC;gBAC5C,KAAK,EAAE,CAAC;YACZ,CAAC;QACL,CAAC;QACD,OAAO,KAAK,CAAC;IACjB,CAAC;IAED;;;;;OAKG;IACH,gBAAgB,CAAC,KAAa;QAC1B,OAAO,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAA;IACrC,CAAC;IAED;;;;OAIG;IACH,YAAY,CAAC,aAA4B;QACrC,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,aAAa,CAAC,CAAA;IAC3C,CAAC;IAED;;;;OAIG;IACH,eAAe,CAAC,KAAa;QACzB,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;IACxC,CAAC;IAED;;OAEG;IACH,mBAAmB;QACf,IAAI,CAAC,cAAc,GAAG,IAAI,KAAK,EAAiB,CAAA;IACpD,CAAC;IAED;;;;;OAKG;IACH,mBAAmB,CAAC,aAA4B;QAC5C,IAAI,iBAAiB,GAAG,IAAI,KAAK,EAAiB,CAAC;QACnD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,aAAa,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC;YAC5C,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QACtE,CAAC;QACD,OAAO,IAAI,cAAc,CAAC,iBAAiB,CAAC,CAAC;IACjD,CAAC;CACJ;AAnID,wCAmIC"}