Regression Indicators

Reference

Indicators.mlrMethod
mlr(y::Array{T}; n::Int64=10)::Array{T} where {T<:Real}

Moving linear regression predictions

source
Indicators.mlr_bandsMethod
mlr_bands(y::Array{T}; n::Int64=10, se::T=2.0)::Matrix{T} where {T<:Real}

Moving linear regression bands

Output:

Column 1: Lower bound

Column 2: Regression estimate

Column 3: Upper bound

source
Indicators.mlr_betaMethod
mlr_beta(y::Array{T}; n::Int64=10, x::Array{T}=collect(1.0:n))::Matrix{T} where {T<:Real}

Moving linear regression intercept (column 1) and slope (column 2)

source
Indicators.mlr_interceptMethod
mlr_intercept(y::Array{T}; n::Int64=10, x::Array{T}=collect(1.0:n))::Array{T} where {T<:Real}

Moving linear regression y-intercept

source
Indicators.mlr_lbMethod
mlr_lb(y::Array{T}; n::Int64=10, se::T=2.0)::Array{T} where {T<:Real}

Moving linear regression lower bound

source
Indicators.mlr_rsqMethod
mlr_rsq(y::Array{T}; n::Int64=10, adjusted::Bool=false)::Array{T} where {T<:Real}

Moving linear regression R-squared or adjusted R-squared

source
Indicators.mlr_seMethod
mlr_se(y::Array{T}; n::Int64=10)::Array{T} where {T<:Real}

Moving linear regression standard errors

source
Indicators.mlr_slopeMethod
mlr_slope(y::Array{T}; n::Int64=10, x::Array{T}=collect(1.0:n))::Array{T} where {T<:Real}

Moving linear regression slope

source
Indicators.mlr_ubMethod
mlr_ub(y::Array{T}; n::Int64=10, se::T=2.0)::Array{T} where {T<:Real}

Moving linear regression upper bound

source