Alim Dayim
Alim Dayim
The idea behind this is one of my colleagues asked if she can use `arrangeGrob` function in the `gridExtra` package to put multiple plots in one page. I find out...
Since the forest plot is quite standard. The position of elements are aligned in horizontally with each other, `gtable` package might be a better choice compared to using `viewport`. The...
I don't know if there is any update on this, what about `pbapply` package? But I find this package do more regarding the progress bar.
I am not sure if `pygments` lexer [here ](https://github.com/mhaberler/pygments/blob/master/pygments/lexers/sas.py)would help. There's another syntax rule can be found [here](https://libguides.library.kent.edu/SAS/syntax) > 1. the lexer treat `// ... ;` as comment but I...
Yes, you are right, `//` is not a comment. Sorry for the confusion. The comments need to start with `/*` or `*` and ends with `;`. Comments can end with...
Hi, In theory, you can edit everything. I am busy for now and won't be able to implement it soon. But I will work on this and make it available.
Hi, sorry for taking such a long time. Can you have a look at the update? There are `xaxis_gp`, `refline_gp`, `footnote_gp`, `title_gp`, `arrow_gp` and `xlab_gp` you can use to modify...
> > Hi, sorry for taking such a long time. Can you have a look at the update? There are `xaxis_gp`, `refline_gp`, `footnote_gp`, `title_gp`, `arrow_gp` and `xlab_gp` you can use...
Hi, I think the problem is caused by auto calculation of x-axis ticks and ticks digits. You can solve this by providing the ticks as following: ```r forestploter::forest(input, est =...
You can try to calculate the `ticks_at` and `ticks_digits` in your Shiny app, and pass these to the `forest` function. This is not an issue related to this package, I...