forestplot
forestplot copied to clipboard
A Python package to make publication-ready but customizable coefficient plots.
**Issue:** mforestplots do not correspond to (correct) forestplots **Background:** I have data for unadjusted and adjusted odds ratios with confidence intervals. I plot the same data using both forestplot (with...
Hello! Thank you for creating the package. It has been very helpful for my ongoing project. I've been using it for the last few months and and it was working...
Hey, first of thank you for the repo. It helped me a lot with my ongoing project. I was facing some issues with the flexibility of the plots. Places when...
I've noticed a 'feature' such that when you do not use 'groupvar', columns of integers are displayed correctly. But once using the 'groupvar' function, it's now formatting the integers as...
LOVE it, thank you! For some reason when plotted, it adds blank space in the middle. Even with the toy example, loading your dataset it gives the same plotting.
Great package! Where in the code should I look if I want to modify the plotting so that I can change the color of a line when the corresponding row...
See [issue48-table-does-not-work-6rows-or-fewer.ipynb](https://github.com/LSYS/forestplot/blob/main/docs/assets/issue52-table-does-not-work-6rows-or-fewer.ipynb). ```python df = fp.load_data("sleep") fp.forestplot(df.head(6), # the dataframe with results data estimate="r", # col containing estimated effect size ll="ll", hl="hl", # lower & higher limits of conf. int....
In forestplot/graph_utils.py, extrapad was calculated as xlim[1] * (1 + extrapad) which becomes extremely large when effects are not close to 0. These lines were refactored into a function _get_pad()...
I would like to use different fonts (e.g. Helvetica, Arial) to match journal font requirements for publication-ready figures. A potential fix could be to use [matplotlib.pyplot.table](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.table.html) to render the table...
This is kind of a picky request, but could there be an option to move the confidence interval report to the right of the forest plot, similar to the figure...