LinearRegression.jl icon indicating copy to clipboard operation
LinearRegression.jl copied to clipboard

Simple & fast linear regression in Julia

Results 3 LinearRegression.jl issues
Sort by recently updated
recently updated
newest added

Hi, I am a newbie to Julia, and I ran into this problem when trying to do a linear regression to two data arrays. Could you please give me more...

I had problems running linregress with intercept=false. This constructor worked: LinearRegression.LinearRegressor(intercept::Bool, coeffs::Float64) = LinearRegression.LinearRegressor(intercept, [coeffs]) I guess you could also swap ::Float64 with ::Real.

Hi, I would like to predict the model on a dataset. Here is what I tried, I thought it was supposed to work according to the readme: ``` x =...