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
print_md.rules
Should return something like this:
Inputs:
This can then be used to generate the docs / vignettes more easily.
The text was updated successfully, but these errors were encountered:
init #464
dd40f1a
library(effectsize) x <- rules(c(0.2, 0.5), c("small", "medium", "large"), name = "ziggi") print_md(x) #> #> `ziggi`: #> - **x <= 0.2** - Small #> - **0.2 < x <= 0.5** - Medium #> - **0.5 < x** - Large print_md(x, "Z") #> #> `ziggi`: #> - **Z <= 0.2** - Small #> - **0.2 < Z <= 0.5** - Medium #> - **0.5 < Z** - Large print_md(x, "Z", "Ziggi (2024) `{.rn}`:") #> #> Ziggi (2024) `ziggi`: #> - **Z <= 0.2** - Small #> - **0.2 < Z <= 0.5** - Medium #> - **0.5 < Z** - Large
Created on 2023-12-12 with reprex v2.0.2
Now to just use it everywhere...
Sorry, something went wrong.
mattansb
No branches or pull requests
Should return something like this:
Inputs:
This can then be used to generate the docs / vignettes more easily.
The text was updated successfully, but these errors were encountered: