Skip to content

Commit

Permalink
Merge branch 'rjdverse:develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
TanguyBarthelemy authored Oct 25, 2024
2 parents a514887 + 64b79c3 commit 2c45e2e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Binary file modified inst/java/jdplus-toolkit-base-core-3.2.5-SNAPSHOT.jar
Binary file not shown.
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 2c45e2e

Please sign in to comment.