Meinhard Ploner
Meinhard Ploner
@michaelcarter @Coqueiro I did not try anymore. In the meanwhile I wrote an R package which also handles the endpoints segmentation/sum and segmentation/average (https://github.com/ploner/RMixpanel/blob/master/man/mixpanelGetSegmentation.Rd). But you might need a JS...
Actually I want to open all popups (e.g. on app start) by code, for all the markers. Then, on-demand, the user could close some - but that's a feature with...
The 1st popup still closes when I open another popup. I have to apply these 2 options: popupOptions(closeOnClick = FALSE, autoClose=FALSE) but `autoClose` does not work :(
I had the same issue. Solved it simply using: ``` it = collection$iterate(query) res = c() try( repeat({ res = dplyr::bind_rows(res, it$page(size=10000)) }), silent=TRUE ) ```