Google Chart Overlays using googleVis package in R -


google charts has overlay functionality allows put image on plot @ specified position. possible in googlevis package or need edit chart html ad hoc include overlay?

you can add overlay google map using googleway package. use google maps need valid api key

library(googleway) map_key <- 'your_api_key'  google_map(key = map_key) %>%     add_overlay(north = 40.773941,south = 40.712216, east = -74.12544, west = -74.22655,                             overlay_url = "https://www.lib.utexas.edu/maps/historical/newark_nj_1922.jpg") 

enter image description here


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -