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
kwargs for thresholds and symbols are not getting passed through to the star_pval formatter.
kwargs
thresholds
symbols
star_pval
For example,
import pandas as pd import forestplot as fp df = fp.load_data("sleep") fp.forestplot(df, # the dataframe with results data estimate="r", # col containing estimated effect size ll="ll", hl="hl", # columns containing conf. int. lower and higher limits varlabel="label", # column containing variable label pval="p-val", # Column of p-value to be reported on right color_alt_rows=True, # Gray alternate rows ylabel="Est.(95% Conf. Int.)", # ylabel to print decimal_precision=3, **{"thresholds":(0.001, 0.01, 0.05)} )
The text was updated successfully, but these errors were encountered:
Allow thresholds and symbols to be passed through (fixes #51)
d1128fd
30ee8d0
Successfully merging a pull request may close this issue.
kwargs
forthresholds
andsymbols
are not getting passed through to thestar_pval
formatter.For example,
The text was updated successfully, but these errors were encountered: