@frontlinesystems/rason-mcp-server 2026.5.0 → 2026.5.1

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 (195) hide show
  1. package/LICENSE +35 -35
  2. package/README.md +1 -1
  3. package/examples/EXAMPLES_REFERENCE.md +128 -128
  4. package/examples/calculation/DMNExamples/DMN Box Fun with typeDef result.json +53 -53
  5. package/examples/calculation/DMNExamples/DMN Context example.json +69 -69
  6. package/examples/calculation/DMNExamples/DMN DT with typeDef result.json +43 -43
  7. package/examples/calculation/DMNExamples/FEEL Date Time example.json +28 -28
  8. package/examples/calculation/DMNExamples/FEEL For iteration example.json +66 -66
  9. package/examples/calculation/DMNExamples/FEEL For with two indices.json +15 -15
  10. package/examples/calculation/DMNExamples/FEEL For with typeDef result.json +88 -88
  11. package/examples/calculation/DMNExamples/FEEL If Then Else example.json +25 -25
  12. package/examples/calculation/DMNExamples/FEEL List example.json +37 -37
  13. package/examples/calculation/DMNExamples/FEEL List operator.json +17 -17
  14. package/examples/calculation/DMNExamples/FEEL List with typeDef collection.json +36 -36
  15. package/examples/calculation/DMNExamples/FEEL Some or Every example.json +65 -65
  16. package/examples/calculation/DecisionTables/DT Datasource example.json +52 -52
  17. package/examples/calculation/DecisionTables/DT Date and Time examples.json +91 -91
  18. package/examples/calculation/DecisionTables/DT Expression example.json +32 -32
  19. package/examples/calculation/DecisionTables/DT Hit Policy examples.json +136 -136
  20. package/examples/calculation/DecisionTables/DT Loan Recommend model.json +81 -81
  21. package/examples/calculation/DecisionTables/DT Loan Strategy Model and Predictive CSV-XML.json +218 -218
  22. package/examples/calculation/DecisionTables/DT Loan Strategy model and Datasource.json +286 -286
  23. package/examples/calculation/DecisionTables/DT Loan Strategy model and Predictive.json +203 -203
  24. package/examples/calculation/DecisionTables/DT Loan Strategy model by scratch.json +214 -214
  25. package/examples/calculation/DecisionTables/DT Output Order example.json +39 -39
  26. package/examples/calculation/DecisionTables/DT Unique example.json +38 -38
  27. package/examples/calculation/TypeDefinitions/TypeDefCF.json +64 -64
  28. package/examples/calculation/TypeDefinitions/TypeDefDT.json +57 -57
  29. package/examples/datamining/AffinityAnalysis/AssociationRules.json +51 -51
  30. package/examples/datamining/Classification/DecisionTree.json +90 -90
  31. package/examples/datamining/Classification/DiscriminantAnalysis.json +81 -81
  32. package/examples/datamining/Classification/Ensembles/Bagging.json +66 -66
  33. package/examples/datamining/Classification/Ensembles/Boosting.json +67 -67
  34. package/examples/datamining/Classification/Ensembles/RandomTrees.json +91 -91
  35. package/examples/datamining/Classification/FindBestModel.json +86 -86
  36. package/examples/datamining/Classification/LogisticRegression.json +82 -82
  37. package/examples/datamining/Classification/NaiveBayes.json +78 -78
  38. package/examples/datamining/Classification/NearestNeighbors.json +84 -84
  39. package/examples/datamining/Classification/NeuralNetwork.json +92 -92
  40. package/examples/datamining/Clustering/Hierarchical.json +54 -54
  41. package/examples/datamining/Clustering/KMeans.json +71 -71
  42. package/examples/datamining/DataSources/DelimitedFile.json +49 -49
  43. package/examples/datamining/DataSources/JSONFile.json +49 -49
  44. package/examples/datamining/DataSources/MSAccessDatabase.json +49 -49
  45. package/examples/datamining/DataSources/MSExcelTable.json +50 -50
  46. package/examples/datamining/DataSources/MSSQLDatabase.json +49 -49
  47. package/examples/datamining/DataSources/ODATATable.json +49 -49
  48. package/examples/datamining/DataSources/ODBCDatabase.json +49 -49
  49. package/examples/datamining/FeatureSelection/LinearWrapping.json +53 -53
  50. package/examples/datamining/FeatureSelection/LogisticWrapping.json +56 -56
  51. package/examples/datamining/FeatureSelection/Univariate.json +78 -78
  52. package/examples/datamining/Regression/DecisionTree.json +82 -82
  53. package/examples/datamining/Regression/Ensembles/Bagging.json +62 -62
  54. package/examples/datamining/Regression/Ensembles/Boosting.json +62 -62
  55. package/examples/datamining/Regression/Ensembles/RandomTrees.json +78 -78
  56. package/examples/datamining/Regression/FindBestModel.json +86 -86
  57. package/examples/datamining/Regression/LinearRegression.json +124 -124
  58. package/examples/datamining/Regression/NearestNeighbors.json +77 -77
  59. package/examples/datamining/Regression/NeuralNetwork.json +82 -82
  60. package/examples/datamining/Scoring/JSONClassifier.json +62 -62
  61. package/examples/datamining/Scoring/JSONClassifierNN.json +62 -62
  62. package/examples/datamining/Scoring/JSONClusterizer.json +37 -37
  63. package/examples/datamining/Scoring/JSONForecaster.json +49 -49
  64. package/examples/datamining/Scoring/JSONLinearRegression.json +56 -56
  65. package/examples/datamining/Scoring/JSONPCA.json +41 -41
  66. package/examples/datamining/Scoring/JSONRegressor.json +56 -56
  67. package/examples/datamining/Scoring/JSONTransformer.json +38 -38
  68. package/examples/datamining/Scoring/PMMLClassifier.json +42 -42
  69. package/examples/datamining/Scoring/PMMLForecaster.json +43 -43
  70. package/examples/datamining/Scoring/PMMLRegressor.json +38 -38
  71. package/examples/datamining/Scoring/PMMLTransformer.json +38 -38
  72. package/examples/datamining/Simulation/LinearRegressionSimulation.json +117 -117
  73. package/examples/datamining/Simulation/SyntheticDataGeneration.json +108 -108
  74. package/examples/datamining/Simulation/pmml-risk-scoring.json +62 -62
  75. package/examples/datamining/Summarizer/Summarization.json +54 -54
  76. package/examples/datamining/TextMining/LatentSemanticAnalysis.json +51 -51
  77. package/examples/datamining/TextMining/TfIdf-FileData.json +65 -65
  78. package/examples/datamining/TextMining/TfIdf-InlineData.json +55 -55
  79. package/examples/datamining/TimeSeries/AddHoltWinters.json +79 -79
  80. package/examples/datamining/TimeSeries/Arima.json +74 -74
  81. package/examples/datamining/TimeSeries/DoubleExponential.json +65 -65
  82. package/examples/datamining/TimeSeries/Exponential.json +64 -64
  83. package/examples/datamining/TimeSeries/LagAnalysis.json +48 -48
  84. package/examples/datamining/TimeSeries/MovingAverage.json +65 -65
  85. package/examples/datamining/TimeSeries/MulHoltWinters.json +65 -65
  86. package/examples/datamining/TimeSeries/NoTrendHoltWinters.json +65 -65
  87. package/examples/datamining/Transformation/Binning.json +69 -69
  88. package/examples/datamining/Transformation/CanonicalVariateAnalysis.json +47 -47
  89. package/examples/datamining/Transformation/CategoryReduction.json +51 -51
  90. package/examples/datamining/Transformation/Factorization.json +50 -50
  91. package/examples/datamining/Transformation/MissingDataHandling.json +83 -83
  92. package/examples/datamining/Transformation/OneHotEncoding-DataInline.json +54 -54
  93. package/examples/datamining/Transformation/OneHotEncoding-DatainFile.json +48 -48
  94. package/examples/datamining/Transformation/PartitionTimeSeries.json +48 -48
  95. package/examples/datamining/Transformation/Partitioning-DF.json +72 -72
  96. package/examples/datamining/Transformation/Partitioning.json +46 -46
  97. package/examples/datamining/Transformation/PartitioningWithOversampling-DF.json +65 -65
  98. package/examples/datamining/Transformation/PartitioningWithOversampling.json +44 -44
  99. package/examples/datamining/Transformation/PrincipalComponentsAnalysis.json +52 -52
  100. package/examples/datamining/Transformation/Rescaling.json +67 -67
  101. package/examples/datamining/Transformation/Sampling.json +43 -43
  102. package/examples/datamining/Transformation/StratifiedSampling.json +46 -46
  103. package/examples/flow/SQLServerTransform.json +260 -260
  104. package/examples/flow/dm-calc-pipeline.json +277 -277
  105. package/examples/flow/dm-pipeline-simulation.json +113 -113
  106. package/examples/flow/opt-sim-pipeline.json +159 -159
  107. package/examples/flow/sim-dm-pipeline.json +106 -106
  108. package/examples/flow/sim-sim-pipeline.json +136 -136
  109. package/examples/index.json +4678 -4678
  110. package/examples/{Optimization → optimization}/Conic/AirlineHubConic.json +111 -111
  111. package/examples/{Optimization → optimization}/Conic/AirlineHubConic2.json +108 -108
  112. package/examples/{Optimization → optimization}/Conic/AirlineHubConic3.json +111 -111
  113. package/examples/{Optimization → optimization}/Conic/AirlineHubConic4.json +99 -99
  114. package/examples/{Optimization → optimization}/Conic/AirlineHubConic5.json +101 -101
  115. package/examples/{Optimization → optimization}/DataBinding/ProductMixCsv.json +81 -81
  116. package/examples/{Optimization → optimization}/DataBinding/ProductMixCsv4.json +96 -96
  117. package/examples/{Optimization → optimization}/DataBinding/ProductMixExcel.json +73 -73
  118. package/examples/{Optimization → optimization}/DataBinding/ProductMixExcel1.json +86 -86
  119. package/examples/{Optimization → optimization}/DataBinding/ProductMixExcel11.json +108 -108
  120. package/examples/{Optimization → optimization}/DataBinding/ProductMixExcel2.json +77 -77
  121. package/examples/{Optimization → optimization}/DataBinding/ProductMixTab.json +89 -89
  122. package/examples/{Optimization → optimization}/DataBinding/ProductMixTab1.json +73 -73
  123. package/examples/{Optimization → optimization}/DataBinding/ProductMixTab2.json +77 -77
  124. package/examples/{Optimization → optimization}/Linear/Inventory.json +199 -199
  125. package/examples/{Optimization → optimization}/Linear/Matop.json +119 -119
  126. package/examples/{Optimization → optimization}/Linear/ProductMix.json +97 -97
  127. package/examples/{Optimization → optimization}/Linear/ProductMix2.json +72 -72
  128. package/examples/{Optimization → optimization}/Linear/ProductMix3.json +49 -49
  129. package/examples/{Optimization → optimization}/Linear/ProductMix4.json +56 -56
  130. package/examples/{Optimization → optimization}/Linear/ProductMixCsv1.json +106 -106
  131. package/examples/{Optimization → optimization}/Linear/ProductMixCsv2.json +106 -106
  132. package/examples/{Optimization → optimization}/Linear/ProductMixSQL11.json +82 -82
  133. package/examples/{Optimization → optimization}/Linear/Rowop.json +126 -126
  134. package/examples/{Optimization → optimization}/NonLinear/AirlineHub.json +63 -63
  135. package/examples/{Optimization → optimization}/NonLinear/AirlineHub2.json +47 -47
  136. package/examples/{Optimization → optimization}/NonLinear/AirlineHub3.json +47 -47
  137. package/examples/{Optimization → optimization}/NonSmooth/Inventory2.json +159 -159
  138. package/examples/{Optimization → optimization}/Quadratic/PortfolioOpt.json +55 -55
  139. package/examples/{Optimization → optimization}/Quadratic/PortfolioOpt2.json +65 -65
  140. package/examples/{Optimization → optimization}/WithUncertainty/GasCompanyChance.json +78 -78
  141. package/examples/{Optimization → optimization}/WithUncertainty/GasCompanyRecourse.json +78 -78
  142. package/examples/{Optimization → optimization}/WithUncertainty/ProjectSelect.json +77 -77
  143. package/examples/{Optimization → optimization}/WithUncertainty/ProjectSelect2.json +81 -81
  144. package/examples/{Optimization → optimization}/WithUncertainty/ProjectSelect3.json +84 -84
  145. package/examples/{Optimization → optimization}/WithUncertainty/ProjectSelect4.json +74 -74
  146. package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/DataFiltering/ListwithFilter.json +52 -52
  147. package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/Loops/ProductMix5.json +57 -57
  148. package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/Loops/compoundWhileStatement.json +35 -35
  149. package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/Loops/ifThenElseStatement.json +33 -33
  150. package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/Loops/nestedLoop.json +25 -25
  151. package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/ParallelArray.json +47 -47
  152. package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/indexedArray.json +69 -69
  153. package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/nonParallelArray.json +49 -49
  154. package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/sumAggregateExample.json +337 -337
  155. package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/tsp.json +61 -61
  156. package/examples/rason-features/BoxIterators/Box_Fun_Loop_Iter_Sim_RASON.json +190 -190
  157. package/examples/rason-features/BoxIterators/Box_Fun_Loop_Sim_RASON.json +75 -75
  158. package/examples/rason-features/BoxIterators/Box_Fun_Sim_RASON.json +108 -108
  159. package/examples/rason-features/BoxIterators/Box_Iter_SIM_RASON.json +68 -68
  160. package/examples/rason-features/BoxIterators/Box_Iterator_Calc_Loop.json +183 -183
  161. package/examples/rason-features/BoxIterators/Box_Iterator_with_typeDef_partial.json +79 -79
  162. package/examples/rason-features/BoxLambdaExamples/BoxFunOptimize.json +154 -154
  163. package/examples/rason-features/BoxLambdaExamples/BoxFunSimulate.json +118 -118
  164. package/examples/rason-features/BoxLambdaExamples/LambdaFunOptimize.json +142 -142
  165. package/examples/rason-features/BoxLambdaExamples/LambdaFunSimulate.json +81 -81
  166. package/examples/rason-features/ReferenceGuide/RGFirehouseLocation.json +69 -69
  167. package/examples/rason-features/ReferenceGuide/RGFirehouseLocationConic.json +113 -113
  168. package/examples/rason-features/ReferenceGuide/RGProductMixCsv1.json +107 -107
  169. package/examples/rason-features/ReferenceGuide/RGProductMixExcel11.json +117 -117
  170. package/examples/rason-features/ReferenceGuide/RGProductMixSQL11.json +108 -108
  171. package/examples/rason-features/UserGuide/UGAirlineHubCSV.json +67 -67
  172. package/examples/rason-features/UserGuide/UGForecast.json +50 -50
  173. package/examples/rason-features/UserGuide/UGProductMix1.json +48 -48
  174. package/examples/rason-features/UserGuide/UGProductMix2.json +48 -48
  175. package/examples/rason-features/UserGuide/UGProductMixTab1.json +67 -67
  176. package/examples/rason-features/UserGuide/UGProductMixTab2.json +76 -76
  177. package/examples/rason-features/UserGuide/UGProductMixTab3.json +66 -66
  178. package/examples/rason-features/UserGuide/UGProductMixTab4.json +70 -70
  179. package/examples/rason-features/UserGuide/UGProductMixTab5.json +67 -67
  180. package/examples/rason-features/UserGuide/UGProjectSelect0.json +91 -91
  181. package/examples/rason-features/UserGuide/UGProjectSelect1.json +74 -74
  182. package/examples/rason-features/UserGuide/UGProjectSelect2.json +74 -74
  183. package/examples/rason-features/UserGuide/UGYieldManagement1.json +61 -61
  184. package/examples/rason-features/UserGuide/UGYieldManagement2.json +61 -61
  185. package/examples/rason-features/UserGuide/UGYieldManagement3.json +63 -63
  186. package/examples/{Simulation → simulation}/CandyStoreSalesUsingSIP.json +147 -147
  187. package/examples/{Simulation → simulation}/CollegeFundGrowth1.json +423 -423
  188. package/examples/{Simulation → simulation}/CollegeFundGrowth1SIPModel.json +27 -27
  189. package/examples/{Simulation → simulation}/CollegeFundGrowth2.json +415 -415
  190. package/examples/{Simulation → simulation}/CollegeFundGrowthSIP.json +401 -401
  191. package/examples/{Simulation → simulation}/GBMSimulationModel.json +236 -236
  192. package/examples/{Simulation → simulation}/YieldManagement(Sim).json +69 -69
  193. package/examples/{Simulation → simulation}/YieldManagement2(Sim).json +72 -72
  194. package/out/index.cjs +38 -38
  195. package/package.json +2 -2
@@ -1,80 +1,80 @@
1
- {
2
- "modelName": "AddHoltWinters",
3
- "modelDescription": "RASON Add Holt Winters Smoothing Example: This example generates a fitted model, POSTs the fitted model to the RASON server and also exports the fitted model in PMML and JSON format, then uses the fitted model to score the imported datasource and finally generates a forecast based on the fitted model. This example imports one outside data source, Airpass.txt which may be downloaded by clicking the RASON Examples Download icon (download cloud icon). To solve this model, you must first POST the model to the RASON Server by clicking the POST icon (upload cloud icon on the left). Afterwards click Choose Files (on the Properties pane on the right), browse to the location of the downloaded examples, and select Airpass.txt. Then click the down arrow next to the Play icon and click Solve. For more information on POSTing and solving example models, click Help - Defining Your Data Mining Model.",
4
- "modelType": "datamining",
5
- "datasources": {
6
- "comment": "Defines datasources to use with this model, in the datasources section. Typically these bind to external data sources due to data volume.",
7
- "myDataSrc": {
8
- "comment": "Imports the outside data source, Airpass.txt, and binds the data to myDataSrc datasource. Note the direction property: import. The property content:time-series considers the 1st column as the time variable and the 2nd column as the value column in the dataframe.",
9
- "type": "csv",
10
- "connection": "Airpass.txt",
11
- "content": "time-series",
12
- "direction": "import"
13
- },
14
- "myPMMLSrc": {
15
- "comment": "This file (arima.xml) is currently setup to receive the exported fitted model in PMML format. (See the 'binding' property in the addHWModel action below.) Note the direction property, export, which specifies the information will be exported, rather than imported.",
16
- "type": "xml",
17
- "content": "pmml-model",
18
- "connection": "arima.xml",
19
- "direction": "export"
20
- },
21
- "jsonModelSrc": {
22
- "comment": "Currently, this file is not being used. To export the fitted model in JSON format, rather than in PMML format, change the 'binding' property within the addHWModel action to 'binding':'jsonModelSrc'. After the model is solved, this file (arima.json) will contain the fitted model in JSON format. Note the direction property, export, which specifies the information will be exported, rather than imported.",
23
- "type": "json",
24
- "content": "json-model",
25
- "connection": "arima.json",
26
- "direction": "export"
27
- }
28
- },
29
- "datasets": {
30
- "comment": "Datasets are bound to an entry in the 'datasources' section",
31
- "myData": {
32
- "comment": "Binds myDataSrc (Airpass.txt) to myData data set.",
33
- "binding": "myDataSrc"
34
- }
35
- },
36
- "estimator": {
37
- "comment": "Defines an estimator, including the type, algorithm and parameters. Only 1 estimator may appear in a RASON model.",
38
- "addHWEstimator": {
39
- "comment": "Defines the addHWEstimator as a Add Holt Winters smoothing time series estimator; various options are set. For a complete list of all algorithm options, see the RASON Data Mining Components chapter in the RASON Reference Guide. (Click the Help tab to download.)",
40
- "type": "timeSeries",
41
- "algorithm": "addHoltWinters",
42
- "parameters": {
43
- "period": 12,
44
- "optimize": true
45
- }
46
- }
47
- },
48
- "actions": {
49
- "comment": "Define actions, evaluations, and data to be used by the estimator created above.",
50
- "addHWModel": {
51
- "comment": "Fits addHWEstimator to myData (Airpass.txt). Generates and POSTS the fitted model to the RASON Server. Also exports the fitted model in PMML format to myPMMLSrc. To export the fitted model in JSON format, replace'binding':'myPMMLSrc' with 'binding':'jsonModelSrc'.",
52
- "data": "myData",
53
- "estimator": "addHWEstimator",
54
- "action": "fit",
55
- "binding": "myPMMLSrc",
56
- "evaluations": [ "fittedModelJson", "coefficientsInfo" ]
57
- },
58
- "fitted": {
59
- "comment": "Scores (using 'action':'transform') the myData dataset ('data':'myData') using the fitted Add Holt Winters model, addHWModel ('fittedModel':'addHWModel'). Various evaluations are requested in the results: transformation (which returns the Close price as predicted by addHWModel), residuals (difference between the actual and predicted values), and several statistics (using 'metrics'), such as SSE (sum of squared error), MSE (mean squared error), MAPE (mean absolute percentage error), MAD (mean absolute deviation), etc. See the JSON results for the statistic values.",
60
- "data": "myData",
61
- "fittedModel": "addHWModel",
62
- "action": "transform",
63
- "evaluations": [ "transformation", "residuals", "metrics" ]
64
- },
65
- "forecasted": {
66
- "comment": "Uses the fitted model, addHWModel, to generate a forecast for the myData dataset. Note that various parameters are set to specify nonseasonal lag, seasonal lag, seasonality period, confidence level and the number of forecasts requested. In addition, the forecast and the difference are requested in the results. (The evaluation, difference, returns the differenced data in the Lag Analysis.) For a complete listing of all parameters and evaluations for Add Holt Winters smoothing, see the RASON Reference Guide.",
67
- "data": "myData",
68
- "fittedModel": "addHWModel",
69
- "parameters": {
70
- "numForecasts": 4,
71
- "confidenceLevel": 0.9,
72
- "nonSeasonalLag": 1,
73
- "seasonalLag": 1,
74
- "period": 12
75
- },
76
- "action": "forecast",
77
- "evaluations": [ "forecast", "difference" ]
78
- }
79
- }
1
+ {
2
+ "modelName": "AddHoltWinters",
3
+ "modelDescription": "RASON Add Holt Winters Smoothing Example: This example generates a fitted model, POSTs the fitted model to the RASON server and also exports the fitted model in PMML and JSON format, then uses the fitted model to score the imported datasource and finally generates a forecast based on the fitted model. This example imports one outside data source, Airpass.txt which may be downloaded by clicking the RASON Examples Download icon (download cloud icon). To solve this model, you must first POST the model to the RASON Server by clicking the POST icon (upload cloud icon on the left). Afterwards click Choose Files (on the Properties pane on the right), browse to the location of the downloaded examples, and select Airpass.txt. Then click the down arrow next to the Play icon and click Solve. For more information on POSTing and solving example models, click Help - Defining Your Data Mining Model.",
4
+ "modelType": "datamining",
5
+ "datasources": {
6
+ "comment": "Defines datasources to use with this model, in the datasources section. Typically these bind to external data sources due to data volume.",
7
+ "myDataSrc": {
8
+ "comment": "Imports the outside data source, Airpass.txt, and binds the data to myDataSrc datasource. Note the direction property: import. The property content:time-series considers the 1st column as the time variable and the 2nd column as the value column in the dataframe.",
9
+ "type": "csv",
10
+ "connection": "Airpass.txt",
11
+ "content": "time-series",
12
+ "direction": "import"
13
+ },
14
+ "myPMMLSrc": {
15
+ "comment": "This file (arima.xml) is currently setup to receive the exported fitted model in PMML format. (See the 'binding' property in the addHWModel action below.) Note the direction property, export, which specifies the information will be exported, rather than imported.",
16
+ "type": "xml",
17
+ "content": "pmml-model",
18
+ "connection": "arima.xml",
19
+ "direction": "export"
20
+ },
21
+ "jsonModelSrc": {
22
+ "comment": "Currently, this file is not being used. To export the fitted model in JSON format, rather than in PMML format, change the 'binding' property within the addHWModel action to 'binding':'jsonModelSrc'. After the model is solved, this file (arima.json) will contain the fitted model in JSON format. Note the direction property, export, which specifies the information will be exported, rather than imported.",
23
+ "type": "json",
24
+ "content": "json-model",
25
+ "connection": "arima.json",
26
+ "direction": "export"
27
+ }
28
+ },
29
+ "datasets": {
30
+ "comment": "Datasets are bound to an entry in the 'datasources' section",
31
+ "myData": {
32
+ "comment": "Binds myDataSrc (Airpass.txt) to myData data set.",
33
+ "binding": "myDataSrc"
34
+ }
35
+ },
36
+ "estimator": {
37
+ "comment": "Defines an estimator, including the type, algorithm and parameters. Only 1 estimator may appear in a RASON model.",
38
+ "addHWEstimator": {
39
+ "comment": "Defines the addHWEstimator as a Add Holt Winters smoothing time series estimator; various options are set. For a complete list of all algorithm options, see the RASON Data Mining Components chapter in the RASON Reference Guide. (Click the Help tab to download.)",
40
+ "type": "timeSeries",
41
+ "algorithm": "addHoltWinters",
42
+ "parameters": {
43
+ "period": 12,
44
+ "optimize": true
45
+ }
46
+ }
47
+ },
48
+ "actions": {
49
+ "comment": "Define actions, evaluations, and data to be used by the estimator created above.",
50
+ "addHWModel": {
51
+ "comment": "Fits addHWEstimator to myData (Airpass.txt). Generates and POSTS the fitted model to the RASON Server. Also exports the fitted model in PMML format to myPMMLSrc. To export the fitted model in JSON format, replace'binding':'myPMMLSrc' with 'binding':'jsonModelSrc'.",
52
+ "data": "myData",
53
+ "estimator": "addHWEstimator",
54
+ "action": "fit",
55
+ "binding": "myPMMLSrc",
56
+ "evaluations": [ "fittedModelJson", "coefficientsInfo" ]
57
+ },
58
+ "fitted": {
59
+ "comment": "Scores (using 'action':'transform') the myData dataset ('data':'myData') using the fitted Add Holt Winters model, addHWModel ('fittedModel':'addHWModel'). Various evaluations are requested in the results: transformation (which returns the Close price as predicted by addHWModel), residuals (difference between the actual and predicted values), and several statistics (using 'metrics'), such as SSE (sum of squared error), MSE (mean squared error), MAPE (mean absolute percentage error), MAD (mean absolute deviation), etc. See the JSON results for the statistic values.",
60
+ "data": "myData",
61
+ "fittedModel": "addHWModel",
62
+ "action": "transform",
63
+ "evaluations": [ "transformation", "residuals", "metrics" ]
64
+ },
65
+ "forecasted": {
66
+ "comment": "Uses the fitted model, addHWModel, to generate a forecast for the myData dataset. Note that various parameters are set to specify nonseasonal lag, seasonal lag, seasonality period, confidence level and the number of forecasts requested. In addition, the forecast and the difference are requested in the results. (The evaluation, difference, returns the differenced data in the Lag Analysis.) For a complete listing of all parameters and evaluations for Add Holt Winters smoothing, see the RASON Reference Guide.",
67
+ "data": "myData",
68
+ "fittedModel": "addHWModel",
69
+ "parameters": {
70
+ "numForecasts": 4,
71
+ "confidenceLevel": 0.9,
72
+ "nonSeasonalLag": 1,
73
+ "seasonalLag": 1,
74
+ "period": 12
75
+ },
76
+ "action": "forecast",
77
+ "evaluations": [ "forecast", "difference" ]
78
+ }
79
+ }
80
80
  }
@@ -1,75 +1,75 @@
1
- {
2
- "modelName": "Arima",
3
- "modelDescription": "RASON Arima Example that POSTs fitted model (arimaModel) to the RASON Server. This fitted model is used in the the examples Scoring Using JSON ARIMA and Scoring Using PMML Arima. Both may be downloaded from Examples - Data Mining - Scoring. This model also imports a datasource, close.txt, which can be downloaded by clicking the Download RASON Example Files icon (download icon) on the ribbon. To attach the source file to the example, click Choose Files (on the Properties tab on the right), navigate to the location of the downloaded files, select close.txt and click Open. Then click the POST icon (upload icon) to POST the model to the RASON Server, then click the down arrow next to the Play icon and select Solve to solve the model.",
4
- "modelType": "datamining",
5
- "datasources": {
6
- "comment": "Define datasources to use with this model. Typically these bind to external data sources due to data volume.",
7
- "myDataSrc": {
8
- "comment": "Binds the close.txt source file to the myDataSrc datasource. The property content:time-series considers the 1st column as the time variable and the 2nd column as the value column in the dataframe.",
9
- "type": "csv",
10
- "connection": "close.txt",
11
- "content": "time-series",
12
- "direction": "import"
13
- }
14
- },
15
- "datasets": {
16
- "comment": "Datasets are bound to an entry in the 'datasources' section",
17
- "myData": {
18
- "comment": "Binds myDataSrc data source (close.txt) to myData dataset",
19
- "binding": "myDataSrc"
20
- }
21
- },
22
- "estimator": {
23
- "comment": "Defines an estimator, including the type, algorithm and parameters. Only 1 estimator/transformer may appear in a RASON model.",
24
- "arimaEstimator": {
25
- "comment": "Defines the arimaEstimator as an ARIMA estimator; various options are set. For a complete list of all algorithm options, see the RASON Data Mining Components chapter in the RASON Reference Guide. (Click the Help tab to download.)",
26
- "type": "timeSeries",
27
- "algorithm": "arima",
28
- "parameters": {
29
- "autoRegressiveOrder": 1,
30
- "movingAverageOrder": 2,
31
- "difference": 1,
32
- "period": 12,
33
- "seasonalAutoRegressiveOrder": 1,
34
- "seasonalMovingAverageOrder": 1,
35
- "seasonalDifference": 1,
36
- "maxIterations": 5
37
- }
38
- }
39
- },
40
- "actions": {
41
- "comment": "Define actions, evaluations, and data to be used by the estimator created above.",
42
- "arimaModel": {
43
- "comment": "Fits (using 'action':'fit') a model to the myData dataset ('data':'myData') using arimaEstimator ('estimator':'arimaEstimator'). The fitted model is POSTed to the RASON Server using export:json. Various evaluations are requested in the results such as the fitted model in JSON format, the coefficients, Lung-Box Test, variance covariance matrix, the Log Likelihood and the number of iterations. Note that results for fittedModelJson, logLikelihood and numIterations can only be viewed in the JSON results. To view, click Show Json Results in the upper right corner of the OData viewer. See the RASON Reference Guide (click the Help tab to download) for a list of all supported ARIMA parameters and evaluations.",
44
- "data": "myData",
45
- "estimator": "arimaEstimator",
46
- "export": "json",
47
- "action": "fit",
48
- "evaluations": [ "fittedModelJson", "coefficientsInfo", "ljungBoxInfo", "varCovarMatrix", "logLikelihood", "numIterations" ]
49
- },
50
- "fitted": {
51
- "comment": "Scores (using 'action':'transform') the myData dataset ('data':'myData') using the fitted ARIMA model, arimaModel ('fittedModel':'arimaModel'). Various evaluations are requested in the results: transformation (which returns the Close price as predicted by arimaModel), residuals (difference between the actual and predicted values), and several statistics (using 'metrics') such as SSE (sum of squared error), MSE (mean squared error), MAPE (mean absolute percentage error), MAD (mean absolute deviation), etc. See the JSON results for the statistic values.",
52
- "data": "myData",
53
- "fittedModel": "arimaModel",
54
- "action": "transform",
55
- "evaluations": [ "transformation", "residuals", "metrics" ]
56
- },
57
- "forecasted": {
58
- "comment": "Uses the fitted model ('fittedModel':'arimaModel') to generate a forecast (using 'action':'forecast') of 7 data points using a 95% confidence level. Various options are set such as minLag, maxLag, etc. Evaluations requested are: forecast (7 forecasted values), difference (returns the differenced data produced by Lag Analysis), autocovariance (returns the autocovariance function), autocorrelation(returns the autocorrelation function) and partialAutocorrelation(returns the partital autocorrelation function).",
59
- "data": "myData",
60
- "fittedModel": "arimaModel",
61
- "parameters": {
62
- "comment": "specify minLag, maxLag for ACF/PACF/ACVF evalautions and nonSeasonalLag, seasonalLag, period for difference",
63
- "numForecasts": 7,
64
- "confidenceLevel": 0.95,
65
- "minLag": 4,
66
- "maxLag": 10,
67
- "nonSeasonalLag": 1,
68
- "seasonalLag": 1,
69
- "period": 12
70
- },
71
- "action": "forecast",
72
- "evaluations": [ "forecast", "difference", "autocovariance", "autocorrelation", "partialAutocorrelation" ]
73
- }
74
- }
1
+ {
2
+ "modelName": "Arima",
3
+ "modelDescription": "RASON Arima Example that POSTs fitted model (arimaModel) to the RASON Server. This fitted model is used in the the examples Scoring Using JSON ARIMA and Scoring Using PMML Arima. Both may be downloaded from Examples - Data Mining - Scoring. This model also imports a datasource, close.txt, which can be downloaded by clicking the Download RASON Example Files icon (download icon) on the ribbon. To attach the source file to the example, click Choose Files (on the Properties tab on the right), navigate to the location of the downloaded files, select close.txt and click Open. Then click the POST icon (upload icon) to POST the model to the RASON Server, then click the down arrow next to the Play icon and select Solve to solve the model.",
4
+ "modelType": "datamining",
5
+ "datasources": {
6
+ "comment": "Define datasources to use with this model. Typically these bind to external data sources due to data volume.",
7
+ "myDataSrc": {
8
+ "comment": "Binds the close.txt source file to the myDataSrc datasource. The property content:time-series considers the 1st column as the time variable and the 2nd column as the value column in the dataframe.",
9
+ "type": "csv",
10
+ "connection": "close.txt",
11
+ "content": "time-series",
12
+ "direction": "import"
13
+ }
14
+ },
15
+ "datasets": {
16
+ "comment": "Datasets are bound to an entry in the 'datasources' section",
17
+ "myData": {
18
+ "comment": "Binds myDataSrc data source (close.txt) to myData dataset",
19
+ "binding": "myDataSrc"
20
+ }
21
+ },
22
+ "estimator": {
23
+ "comment": "Defines an estimator, including the type, algorithm and parameters. Only 1 estimator/transformer may appear in a RASON model.",
24
+ "arimaEstimator": {
25
+ "comment": "Defines the arimaEstimator as an ARIMA estimator; various options are set. For a complete list of all algorithm options, see the RASON Data Mining Components chapter in the RASON Reference Guide. (Click the Help tab to download.)",
26
+ "type": "timeSeries",
27
+ "algorithm": "arima",
28
+ "parameters": {
29
+ "autoRegressiveOrder": 1,
30
+ "movingAverageOrder": 2,
31
+ "difference": 1,
32
+ "period": 12,
33
+ "seasonalAutoRegressiveOrder": 1,
34
+ "seasonalMovingAverageOrder": 1,
35
+ "seasonalDifference": 1,
36
+ "maxIterations": 5
37
+ }
38
+ }
39
+ },
40
+ "actions": {
41
+ "comment": "Define actions, evaluations, and data to be used by the estimator created above.",
42
+ "arimaModel": {
43
+ "comment": "Fits (using 'action':'fit') a model to the myData dataset ('data':'myData') using arimaEstimator ('estimator':'arimaEstimator'). The fitted model is POSTed to the RASON Server using export:json. Various evaluations are requested in the results such as the fitted model in JSON format, the coefficients, Lung-Box Test, variance covariance matrix, the Log Likelihood and the number of iterations. Note that results for fittedModelJson, logLikelihood and numIterations can only be viewed in the JSON results. To view, click Show Json Results in the upper right corner of the OData viewer. See the RASON Reference Guide (click the Help tab to download) for a list of all supported ARIMA parameters and evaluations.",
44
+ "data": "myData",
45
+ "estimator": "arimaEstimator",
46
+ "export": "json",
47
+ "action": "fit",
48
+ "evaluations": [ "fittedModelJson", "coefficientsInfo", "ljungBoxInfo", "varCovarMatrix", "logLikelihood", "numIterations" ]
49
+ },
50
+ "fitted": {
51
+ "comment": "Scores (using 'action':'transform') the myData dataset ('data':'myData') using the fitted ARIMA model, arimaModel ('fittedModel':'arimaModel'). Various evaluations are requested in the results: transformation (which returns the Close price as predicted by arimaModel), residuals (difference between the actual and predicted values), and several statistics (using 'metrics') such as SSE (sum of squared error), MSE (mean squared error), MAPE (mean absolute percentage error), MAD (mean absolute deviation), etc. See the JSON results for the statistic values.",
52
+ "data": "myData",
53
+ "fittedModel": "arimaModel",
54
+ "action": "transform",
55
+ "evaluations": [ "transformation", "residuals", "metrics" ]
56
+ },
57
+ "forecasted": {
58
+ "comment": "Uses the fitted model ('fittedModel':'arimaModel') to generate a forecast (using 'action':'forecast') of 7 data points using a 95% confidence level. Various options are set such as minLag, maxLag, etc. Evaluations requested are: forecast (7 forecasted values), difference (returns the differenced data produced by Lag Analysis), autocovariance (returns the autocovariance function), autocorrelation(returns the autocorrelation function) and partialAutocorrelation(returns the partital autocorrelation function).",
59
+ "data": "myData",
60
+ "fittedModel": "arimaModel",
61
+ "parameters": {
62
+ "comment": "specify minLag, maxLag for ACF/PACF/ACVF evalautions and nonSeasonalLag, seasonalLag, period for difference",
63
+ "numForecasts": 7,
64
+ "confidenceLevel": 0.95,
65
+ "minLag": 4,
66
+ "maxLag": 10,
67
+ "nonSeasonalLag": 1,
68
+ "seasonalLag": 1,
69
+ "period": 12
70
+ },
71
+ "action": "forecast",
72
+ "evaluations": [ "forecast", "difference", "autocovariance", "autocorrelation", "partialAutocorrelation" ]
73
+ }
74
+ }
75
75
  }
@@ -1,66 +1,66 @@
1
- {
2
- "modelName": "DoubleExponential",
3
- "modelDescription": "RASON Double Exponential Smoothing Example that fits a model to a dataset. This model also imports a datasource, airpass.txt, which can be downloaded by clicking the Download RASON Example Files icon (download icon) on the ribbon. To attach the source file to the example, click Choose Files (on the Properties tab on the right), navigate to the location of the downloaded files, select airpass.txt and click Open. Then click the POST icon (upload icon) to POST the model to the RASON Server, then click the down arrow next to the Play icon and select Solve to solve the model.",
4
- "modelType": "datamining",
5
- "datasources": {
6
- "comment": "Define datasources to use with this model. Typically these bind to external data sources due to data volume.",
7
- "myDataSrc": {
8
- "comment": "Binds the airpass.txt source file to the myDataSrc datasource. The property content:time-series considers the 1st column as the time variable and the 2nd column as the value column in the dataframe.",
9
- "type": "csv",
10
- "connection": "Airpass.txt",
11
- "content": "time-series",
12
- "direction": "import"
13
- }
14
- },
15
- "datasets": {
16
- "comment": "Datasets are bound to an entry in the datasources section",
17
- "myData": {
18
- "comment": "Binds myDataSrc data source (close.txt) to myData dataset",
19
- "binding": "myDataSrc"
20
- }
21
- },
22
- "estimator": {
23
- "comment": "Defines an estimator, including the type, algorithm and parameters. Only 1 estimator/transformer may appear in a RASON model.",
24
- "doubleExpoEstimator": {
25
- "comment": "Defines the doubleExpoEstimator as a double exponential smoothing estimator; various options are set. For a complete list of all algorithm options, see the RASON Data Mining Components chapter in the RASON Reference Guide. (Click the Help tab to download.)",
26
- "type": "timeSeries",
27
- "algorithm": "doubleExponential",
28
- "parameters": {
29
- "optimize": true
30
- }
31
- }
32
- },
33
- "actions": {
34
- "comment": "Define actions, evaluations, and data to be used by the estimator created above.",
35
- "doubleExpoModel": {
36
- "comment": "Fits (using 'action':'fit') a model to the myData dataset ('data':'myData') using doubleExpoEstimator ('estimator':'doubleExpoEstimator'). Various evaluations are requested in the results such as the fitted model in JSON format and the coefficients. To view the fitted model, click Show Json Results in the upper right corner of the OData viewer. See the RASON Reference Guide (click the Help tab to download) for a list of all supported Exponential Smoothing parameters and evaluations.",
37
- "data": "myData",
38
- "estimator": "doubleExpoEstimator",
39
- "action": "fit",
40
- "evaluations": [ "fittedModelJson", "coefficientsInfo" ]
41
- },
42
- "fitted": {
43
- "comment": "Scores (using 'action':'transform') the myData dataset ('data':'myData') using the fitted Double Exponential Smoothing model, doubleExpoModel ('fittedModel':'doubleExpoModel'). Various evaluations are requested in the results: transformation (which returns the # of passengers as predicted by doubleExpoModel), residuals (difference between the actual and predicted values), and several statistics (using 'metrics') such as SSE (sum of squared error), MSE (mean squared error), MAPE (mean absolute percentage error), MAD (mean absolute deviation), etc. See the JSON results for the statistic values.",
44
-
45
- "data": "myData",
46
- "fittedModel": "doubleExpoModel",
47
- "action": "transform",
48
- "evaluations": [ "transformation", "residuals", "metrics" ]
49
- },
50
- "forecasted": {
51
- "comment": "Uses the fitted model ('fittedModel':'doubleExpoModel') to generate a forecast (using 'action':'forecast') of 4 data points using a 90% confidence level. Various options are set such as nonseasonal lag, seasonal lag and period. Evaluations requested are: forecast (4 forecasted values) and difference (returns the differenced data produced by Lag Analysis).",
52
- "data": "myData",
53
- "fittedModel": "doubleExpoModel",
54
- "parameters": {
55
- "comment": "specify nonSeasonalLag, seasonalLag, period for difference",
56
- "numForecasts": 4,
57
- "confidenceLevel": 0.9,
58
- "nonSeasonalLag": 1,
59
- "seasonalLag": 1,
60
- "period": 12
61
- },
62
- "action": "forecast",
63
- "evaluations": [ "forecast", "difference" ]
64
- }
65
- }
1
+ {
2
+ "modelName": "DoubleExponential",
3
+ "modelDescription": "RASON Double Exponential Smoothing Example that fits a model to a dataset. This model also imports a datasource, airpass.txt, which can be downloaded by clicking the Download RASON Example Files icon (download icon) on the ribbon. To attach the source file to the example, click Choose Files (on the Properties tab on the right), navigate to the location of the downloaded files, select airpass.txt and click Open. Then click the POST icon (upload icon) to POST the model to the RASON Server, then click the down arrow next to the Play icon and select Solve to solve the model.",
4
+ "modelType": "datamining",
5
+ "datasources": {
6
+ "comment": "Define datasources to use with this model. Typically these bind to external data sources due to data volume.",
7
+ "myDataSrc": {
8
+ "comment": "Binds the airpass.txt source file to the myDataSrc datasource. The property content:time-series considers the 1st column as the time variable and the 2nd column as the value column in the dataframe.",
9
+ "type": "csv",
10
+ "connection": "Airpass.txt",
11
+ "content": "time-series",
12
+ "direction": "import"
13
+ }
14
+ },
15
+ "datasets": {
16
+ "comment": "Datasets are bound to an entry in the datasources section",
17
+ "myData": {
18
+ "comment": "Binds myDataSrc data source (close.txt) to myData dataset",
19
+ "binding": "myDataSrc"
20
+ }
21
+ },
22
+ "estimator": {
23
+ "comment": "Defines an estimator, including the type, algorithm and parameters. Only 1 estimator/transformer may appear in a RASON model.",
24
+ "doubleExpoEstimator": {
25
+ "comment": "Defines the doubleExpoEstimator as a double exponential smoothing estimator; various options are set. For a complete list of all algorithm options, see the RASON Data Mining Components chapter in the RASON Reference Guide. (Click the Help tab to download.)",
26
+ "type": "timeSeries",
27
+ "algorithm": "doubleExponential",
28
+ "parameters": {
29
+ "optimize": true
30
+ }
31
+ }
32
+ },
33
+ "actions": {
34
+ "comment": "Define actions, evaluations, and data to be used by the estimator created above.",
35
+ "doubleExpoModel": {
36
+ "comment": "Fits (using 'action':'fit') a model to the myData dataset ('data':'myData') using doubleExpoEstimator ('estimator':'doubleExpoEstimator'). Various evaluations are requested in the results such as the fitted model in JSON format and the coefficients. To view the fitted model, click Show Json Results in the upper right corner of the OData viewer. See the RASON Reference Guide (click the Help tab to download) for a list of all supported Exponential Smoothing parameters and evaluations.",
37
+ "data": "myData",
38
+ "estimator": "doubleExpoEstimator",
39
+ "action": "fit",
40
+ "evaluations": [ "fittedModelJson", "coefficientsInfo" ]
41
+ },
42
+ "fitted": {
43
+ "comment": "Scores (using 'action':'transform') the myData dataset ('data':'myData') using the fitted Double Exponential Smoothing model, doubleExpoModel ('fittedModel':'doubleExpoModel'). Various evaluations are requested in the results: transformation (which returns the # of passengers as predicted by doubleExpoModel), residuals (difference between the actual and predicted values), and several statistics (using 'metrics') such as SSE (sum of squared error), MSE (mean squared error), MAPE (mean absolute percentage error), MAD (mean absolute deviation), etc. See the JSON results for the statistic values.",
44
+
45
+ "data": "myData",
46
+ "fittedModel": "doubleExpoModel",
47
+ "action": "transform",
48
+ "evaluations": [ "transformation", "residuals", "metrics" ]
49
+ },
50
+ "forecasted": {
51
+ "comment": "Uses the fitted model ('fittedModel':'doubleExpoModel') to generate a forecast (using 'action':'forecast') of 4 data points using a 90% confidence level. Various options are set such as nonseasonal lag, seasonal lag and period. Evaluations requested are: forecast (4 forecasted values) and difference (returns the differenced data produced by Lag Analysis).",
52
+ "data": "myData",
53
+ "fittedModel": "doubleExpoModel",
54
+ "parameters": {
55
+ "comment": "specify nonSeasonalLag, seasonalLag, period for difference",
56
+ "numForecasts": 4,
57
+ "confidenceLevel": 0.9,
58
+ "nonSeasonalLag": 1,
59
+ "seasonalLag": 1,
60
+ "period": 12
61
+ },
62
+ "action": "forecast",
63
+ "evaluations": [ "forecast", "difference" ]
64
+ }
65
+ }
66
66
  }
@@ -1,65 +1,65 @@
1
- {
2
- "modelName": "Exponential",
3
- "modelDescription": "RASON Exponential Smoothing Example that fits a model to a dataset. This model also imports a datasource, airpass.txt, which can be downloaded by clicking the Download RASON Example Files icon (download icon) on the ribbon. To attach the source file to the example, click Choose Files (on the Properties tab on the right), navigate to the location of the downloaded files, select airpass.txt and click Open. Then click the POST icon (upload icon) to POST the model to the RASON Server, then click the down arrow next to the Play icon and select Solve to solve the model.",
4
- "modelType": "datamining",
5
- "datasources": {
6
- "comment": "Define datasources to use with this model. Typically these bind to external data sources due to data volume.",
7
- "myDataSrc": {
8
- "comment": "Binds the airpass.txt source file to the myDataSrc datasource. The property content:time-series considers the 1st column as the time variable and the 2nd column as the value column in the dataframe.",
9
- "type": "csv",
10
- "connection": "Airpass.txt",
11
- "content": "time-series",
12
- "direction": "import"
13
- }
14
- },
15
- "datasets": {
16
- "comment": "Datasets are bound to an entry in the datasources section",
17
- "myData": {
18
- "comment": "Binds myDataSrc data source (close.txt) to myData dataset",
19
- "binding": "myDataSrc"
20
- }
21
- },
22
- "estimator": {
23
- "comment": "Defines an estimator, including the type, algorithm and parameters. Only 1 estimator/transformer may appear in a RASON model.",
24
- "expoEstimator": {
25
- "comment": "Defines the expoEstimator as an exponential smoothing estimator; various options are set. For a complete list of all algorithm options, see the RASON Data Mining Components chapter in the RASON Reference Guide. (Click the Help tab to download.)",
26
- "type": "timeSeries",
27
- "algorithm": "exponential",
28
- "parameters": {
29
- "optimize": true
30
- }
31
- }
32
- },
33
- "actions": {
34
- "comment": "Define actions, evaluations, and data to be used by the estimator created above.",
35
- "expoModel": {
36
- "comment": "Fits (using 'action':'fit') a model to the myData dataset ('data':'myData') using expoEstimator ('estimator':'expoEstimator'). Various evaluations are requested in the results such as the fitted model in JSON format and the coefficients. To view the fitted model, click Show Json Results in the upper right corner of the OData viewer. See the RASON Reference Guide (click the Help tab to download) for a list of all supported Exponential Smoothing parameters and evaluations.",
37
- "data": "myData",
38
- "estimator": "expoEstimator",
39
- "action": "fit",
40
- "evaluations": [ "fittedModelJson", "coefficientsInfo" ]
41
- },
42
- "fitted": {
43
- "comment": "Scores (using 'action':'transform') the myData dataset ('data':'myData') using the fitted Exponential Smoothing model, expoModel ('fittedModel':'expoModel'). Various evaluations are requested in the results: transformation (which returns the # of passengers as predicted by doubleExpoModel), residuals (difference between the actual and predicted values), and several statistics (using 'metrics') such as SSE (sum of squared error), MSE (mean squared error), MAPE (mean absolute percentage error), MAD (mean absolute deviation), etc. See the JSON results for the statistic values.",
44
- "data": "myData",
45
- "fittedModel": "expoModel",
46
- "action": "transform",
47
- "evaluations": [ "transformation", "residuals", "metrics" ]
48
- },
49
- "forecasted": {
50
- "comment": "Uses the fitted model ('fittedModel':'expoModel') to generate a forecast (using 'action':'forecast') of 4 data points using a 90% confidence level. Various options are set such as nonseasonal lag, seasonal lag and period. Evaluations requested are: forecast (4 forecasted values) and difference (returns the differenced data produced by Lag Analysis).",
51
- "data": "myData",
52
- "fittedModel": "expoModel",
53
- "parameters": {
54
- "comment": "specify evalautions and nonSeasonalLag, seasonalLag, period for difference",
55
- "numForecasts": 4,
56
- "confidenceLevel": 0.9,
57
- "nonSeasonalLag": 1,
58
- "seasonalLag": 1,
59
- "period": 12
60
- },
61
- "action": "forecast",
62
- "evaluations": [ "forecast", "difference" ]
63
- }
64
- }
1
+ {
2
+ "modelName": "Exponential",
3
+ "modelDescription": "RASON Exponential Smoothing Example that fits a model to a dataset. This model also imports a datasource, airpass.txt, which can be downloaded by clicking the Download RASON Example Files icon (download icon) on the ribbon. To attach the source file to the example, click Choose Files (on the Properties tab on the right), navigate to the location of the downloaded files, select airpass.txt and click Open. Then click the POST icon (upload icon) to POST the model to the RASON Server, then click the down arrow next to the Play icon and select Solve to solve the model.",
4
+ "modelType": "datamining",
5
+ "datasources": {
6
+ "comment": "Define datasources to use with this model. Typically these bind to external data sources due to data volume.",
7
+ "myDataSrc": {
8
+ "comment": "Binds the airpass.txt source file to the myDataSrc datasource. The property content:time-series considers the 1st column as the time variable and the 2nd column as the value column in the dataframe.",
9
+ "type": "csv",
10
+ "connection": "Airpass.txt",
11
+ "content": "time-series",
12
+ "direction": "import"
13
+ }
14
+ },
15
+ "datasets": {
16
+ "comment": "Datasets are bound to an entry in the datasources section",
17
+ "myData": {
18
+ "comment": "Binds myDataSrc data source (close.txt) to myData dataset",
19
+ "binding": "myDataSrc"
20
+ }
21
+ },
22
+ "estimator": {
23
+ "comment": "Defines an estimator, including the type, algorithm and parameters. Only 1 estimator/transformer may appear in a RASON model.",
24
+ "expoEstimator": {
25
+ "comment": "Defines the expoEstimator as an exponential smoothing estimator; various options are set. For a complete list of all algorithm options, see the RASON Data Mining Components chapter in the RASON Reference Guide. (Click the Help tab to download.)",
26
+ "type": "timeSeries",
27
+ "algorithm": "exponential",
28
+ "parameters": {
29
+ "optimize": true
30
+ }
31
+ }
32
+ },
33
+ "actions": {
34
+ "comment": "Define actions, evaluations, and data to be used by the estimator created above.",
35
+ "expoModel": {
36
+ "comment": "Fits (using 'action':'fit') a model to the myData dataset ('data':'myData') using expoEstimator ('estimator':'expoEstimator'). Various evaluations are requested in the results such as the fitted model in JSON format and the coefficients. To view the fitted model, click Show Json Results in the upper right corner of the OData viewer. See the RASON Reference Guide (click the Help tab to download) for a list of all supported Exponential Smoothing parameters and evaluations.",
37
+ "data": "myData",
38
+ "estimator": "expoEstimator",
39
+ "action": "fit",
40
+ "evaluations": [ "fittedModelJson", "coefficientsInfo" ]
41
+ },
42
+ "fitted": {
43
+ "comment": "Scores (using 'action':'transform') the myData dataset ('data':'myData') using the fitted Exponential Smoothing model, expoModel ('fittedModel':'expoModel'). Various evaluations are requested in the results: transformation (which returns the # of passengers as predicted by doubleExpoModel), residuals (difference between the actual and predicted values), and several statistics (using 'metrics') such as SSE (sum of squared error), MSE (mean squared error), MAPE (mean absolute percentage error), MAD (mean absolute deviation), etc. See the JSON results for the statistic values.",
44
+ "data": "myData",
45
+ "fittedModel": "expoModel",
46
+ "action": "transform",
47
+ "evaluations": [ "transformation", "residuals", "metrics" ]
48
+ },
49
+ "forecasted": {
50
+ "comment": "Uses the fitted model ('fittedModel':'expoModel') to generate a forecast (using 'action':'forecast') of 4 data points using a 90% confidence level. Various options are set such as nonseasonal lag, seasonal lag and period. Evaluations requested are: forecast (4 forecasted values) and difference (returns the differenced data produced by Lag Analysis).",
51
+ "data": "myData",
52
+ "fittedModel": "expoModel",
53
+ "parameters": {
54
+ "comment": "specify evalautions and nonSeasonalLag, seasonalLag, period for difference",
55
+ "numForecasts": 4,
56
+ "confidenceLevel": 0.9,
57
+ "nonSeasonalLag": 1,
58
+ "seasonalLag": 1,
59
+ "period": 12
60
+ },
61
+ "action": "forecast",
62
+ "evaluations": [ "forecast", "difference" ]
63
+ }
64
+ }
65
65
  }