Skip to content

Commit

Permalink
logadditive decompositionadded before pseudoadditive
Browse files Browse the repository at this point in the history
  • Loading branch information
AQLT committed Oct 23, 2024
1 parent d8108ba commit 4a7beef
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions inst/proto/sa.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ enum ComponentType{
}

enum DecompositionMode {
UNKNOWN = 0;
UNKNOWN = 0;
/* Y = T + S + I) */
ADDITIVE = 1;
/* Y = T * S * I) */
MULTIPLICATIVE = 2;
/* LOG(Y) = T + S + I */
LOGADDITIVE = 3;
/* Y = T * (S + I - 1) */
PSEUDOADDITIVE = 3;
PSEUDOADDITIVE = 4;
}

message SaDecomposition{
Expand Down Expand Up @@ -103,4 +105,4 @@ message CombinedSeasonalityTest{
jd3.StatisticalTest kruskal_wallis = 2;
jd3.OneWayAnova stable_seasonality = 3;
jd3.OneWayAnova evolutive_seasonality = 4;
}
}

0 comments on commit 4a7beef

Please sign in to comment.