We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I came with this implementation;
(defn adj-r2 [lhs rhs p] (let [r2 (stats/r2 lhs rhs) n (count lhs)] (- 1 (* (- 1 r2) (/ (dec n) (- n p 1))))))
from here: https://en.wikipedia.org/wiki/Coefficient_of_determination#Adjusted_R2
The text was updated successfully, but these errors were encountered:
There is an omega-sq which is adjusted R2, I can't match results, something is wrong with it I suppose.
omega-sq
Sorry, something went wrong.
Ok, I will add a third argument for degrees of freedom (features) to adjust r2. It will be in 3.x.
No branches or pull requests
I came with this implementation;
from here:
https://en.wikipedia.org/wiki/Coefficient_of_determination#Adjusted_R2
The text was updated successfully, but these errors were encountered: