Ramnath Vaidyanathan

Results 52 comments of Ramnath Vaidyanathan

I can confirm that it does NOT work with R Markdown, and I get a same blank screen. Digging deeper, here is what I realized. Calling `c1$iframe()` adds the following...

The clickme js and css assets probably are still linked to a folder on your computer, which is why they are not showing up on RPubs.

It is possible, but requires a few changes in the package. I will leave this issue open as a reminder to add this feature.

The `tileLayer` method only supports one provider. However, there is some work in one of the dev branches that supports defining multiple layers with their own set of tiles. It...

I believe this is related to https://github.com/stefanocudini/leaflet-search/issues/196. @schloerke I see that `leaflet.extras` is still using v 2.3.7 of `leaflet-search`, while the current version is `2.9.0`. Any reasons not to switch...

Thanks for the update @schloerke!

Thanks @virajsanghvi . `htmlwidgets` is an R package that allows R developers to create bindings to javascript visualization libraries by componentizing them, and allowing direct use from R. So for...

@krlmlr I thought I was running the CRAN version of `dbplyr`, but I was wrong. Switching to the CRAN version 2.1.1 resolved the issue. It would be great if the...

I am going to take a shot at making `bigrquery` compatible with the latest `dbplyr` release, since it comes with some really cool features (e.g. support for `cut`). I don't...

This is cool! I realized that this could be simplified considerably. See code below ```r # Load Libraries ---- library(DT) library(htmltools) library(dplyr) library(sparkline) library(leaflet) # Helper functions (I think should...