Skip to content

Commit

Permalink
fix: liting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarros authored and fabclmnt committed Oct 28, 2024
1 parent 7ae5e16 commit 7758dba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def stationarity_test(config: Settings, series: pd.Series) -> Tuple[bool, float]
adfuller_test = adfuller(
series.dropna(),
autolag=config.vars.timeseries.autolag,
maxlag=config.vars.timeseries.maxlag
maxlag=config.vars.timeseries.maxlag,
)
p_value = adfuller_test[1]

Expand Down

0 comments on commit 7758dba

Please sign in to comment.