-
-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
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
p_function()
plot #249
#250
Conversation
Codecov Report
@@ Coverage Diff @@
## main #250 +/- ##
==========================================
- Coverage 42.80% 41.83% -0.97%
==========================================
Files 64 65 +1
Lines 4186 4283 +97
==========================================
Hits 1792 1792
- Misses 2394 2491 +97
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
library(parameters)
library(see)
model <- lm(Sepal.Length ~ Species + Sepal.Width + Petal.Length, data = iris)
p <- p_function(model)
plot(p) plot(p, show_labels = FALSE) plot(p, n_columns = 1) plot(p, n_columns = 2) Created on 2022-11-05 with reprex v2.0.2 |
@IndrajeetPatil any idea why checks are not working? |
@strengejacke Can you make sure that there is only one Remotes field in the DESCRIPTION file? Maybe that will fix the issue. |
Ah, missed that one. Fixed now, moved it to the bottom, where those "additional" fields are easiest to find. |
(I'll check the docs tomorrow) |
Yes, no hurry. |
#249