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
Can adjust trend_terms() to have a modifier small differences
trend_terms()
headline(20.4, 20.5, "A {trend} of {delta} ({delta_p})%") # A decrease of 0.1 (0.5%)
desired, uses percentage change
headline(20.4, 20.5, "A {trend} of {delta} ({delta_p})%", threshold = 0.03) # A small decrease of 0.1 (0.5%) # 0.5% is actually 0.005, well below 0.03
The text was updated successfully, but these errors were encountered:
rjake
No branches or pull requests
Can adjust
trend_terms()
to have a modifier small differencesdesired, uses percentage change
The text was updated successfully, but these errors were encountered: