Skip to content

Commit 3060b32

Browse files
committed
Removed incorrect inlines
1 parent 0bdcb77 commit 3060b32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/model_validation.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ function covariate_independence(its::InterruptedTimeSeries; n=1000)
180180
# covariates and time as independent variables
181181
for i in axes(x, 2)
182182
new_x, y = x[:, 1:end .!= i], x[:, i]
183-
@inline β = last(new_x \ y)
184-
@inline p = p_val(new_x, y, β; n=n)
183+
β = last(new_x \ y)
184+
p = p_val(new_x, y, β; n=n)
185185
results["Column " * string(i) * " p-value"] = p
186186
end
187187
return results

0 commit comments

Comments
 (0)