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
get_transformation ignores the logarithmic base, treating all logs as natural logarithms.
get_transformation
mdl <- lm(log(dist, base = 10) ~ speed, data = cars) f <- insight::get_transformation(mdl) print(f$transformation(10)) # Expected: 1, Observed: 2.302585 print(f$inverse(1)) # Expected: 10, Observed: 2.718282
R: 4.4.1 insight: 1.0.1 (dev)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
get_transformation
ignores the logarithmic base, treating all logs as natural logarithms.R: 4.4.1
insight: 1.0.1 (dev)
The text was updated successfully, but these errors were encountered: