The MsStringGeneratorOptions enumeration contains additional settings that are used to generate model names.
It is used by the following property:
Value | Brief description |
0 | Default_. Standard name with the escaped characters. |
1 | ExpandArimaName. Expanded name for the ARIMA model. |
2 | ScreenNames. Standard name with escaped characters. |
4 | AddTermBraces. Standard name with curved brackets for the term names. |
8 | NoAttributes. Term names without attributes used in them. |
16 | EmptyAsX. It is used in the platform kernel, it is not to be used in application code. |
32 | HideY. Name without left part of the equation (Relevant for non-linear regression). |
64 | InnerText. Name based on the internal views of terms. |
256 | ShortMode. Short name. |
ExpandArimaName. Identified equation for the ARIMA model can be obtained by using the expanded name and the IMsStringGenerator.Coord property.
The \ symbol is used for character escaping.
Example for the determinate equation model. The "{" character is an escaped one in the name:
Default_. FC_COMM_26!Af{ghanistan[t] = Albania|BCA[t] * 2
ScreenNames. FC_COMM_26!Af\{ghanistan[t] = Albania|BCA[t] * 2
AddTermBraces. {FC_COMM_26!Af{ghanistan[t]} = {Albania|BCA[t]} * 2
HideY. {Albania|BCA[t]} * 2
See also: