jbytecode / LinRegOutliers

Direct and robust methods for outlier detection in linear regression
MIT License
44 stars 6 forks source link

Julia compat entry should be updated to 1.7 to accommodate RANSAC #43

Closed stevenaleung closed 2 years ago

stevenaleung commented 2 years ago

Using Julia 1.6.0, the RANSAC example code gave me the following error: UndefVarError: ColumnNorm not defined

I tracked the change to this commit - judging by the commit date I suspect it was introduced in version 1.7.0. I also see that the LinRegOutliers tests are passing for Julia 1.7 (the README badge is out of date)

The error was resolved after I upgraded to Julia to 1.7.1

jbytecode commented 2 years ago

@stevenaleung thank you for the issue. I think the latest commits solve the problem.

stevenaleung commented 2 years ago

Thanks for the quick turnaround!