Faizan Uddin Fahad Khan

Results 17 comments of Faizan Uddin Fahad Khan

@vneeruk `animint` is currently not on CRAN. We are working on the new version [`animint2`](https://github.com/tdhock/animint2#installation) which will be on CRAN soon. You may install the current version from GitHub

@tdhock Sounds nice. I will try and get familiar with it in the next few days. @cpsievert Thanks!

I was just going through some old issues related to #177 when I stumbled across this one. It seems like the problem is with the permissions that the R Gui...

@tdhock That sounds reasonable. But it might be a bit tricky. We will have to edit the `built` data in the `ggplot.list` since that is used to compute the domains....

`compute_domains` is only called when `update_axes` is used in `theme_animint`. ([see here](https://github.com/tdhock/animint/blob/master/R/animint.R#L1779)) So any plots not having axis updates will just ignore this, as we don't need to compute domains...

@tdhock I tried implementing the above solution when there are no axes updates, and unfortunately it seems like it will get complicated to deal with the `Inf` values in the...

@tdhock In the case when `compute_domains` is not called, i.e. in the case when there are no axis updates, I tried to replace the `Inf` values with scale limits. I...

@tdhock I have made some changes that I want to be reviewed: 1. As I was working on this, I was going through `parsePlot` and `saveLayer` functions and it was...

Well the internals look a bit better now. I will try and clean up more afterwards. Regarding the case of non-updating plots as a particular case of updating plots with...

I think your comment pretty much sums up the situation. I was also thinking about the point you raised and I think that having the code for replacing `Inf` at...