Questions tagged [gvisgeomap]
8 questions
2
votes
1 answer
Changing point color on a gvisMap in the googleVis R package
I am using the googleVis package in R, and specifically I am trying to work something out with the gvisMap command. As an example, I will use the Hurriance Andrew data shown here:
AndrewMap <- gvisMap(Andrew, "LatLong" , "Tip",
…

user4673
- 153
- 1
- 7
1
vote
2 answers
Interactive Choropleth in R of Sweden
I'm trying to develop an interactive choropleth in a Shiny application in R. I've tried with plotly, gVis and rCharts, but still without any luck. I need to visualise it for Sweden right now, but I probably need it for other countries as well later…

marcopah
- 826
- 2
- 7
- 25
0
votes
0 answers
LiveCharts GeoMap
var r = new Random();
var values = new Dictionary();
values["MX"] = r.Next(0, 100);
values["CA"] = r.Next(0, 100);
values["US"] = r.Next(0, 100);
values["IN"] = r.Next(0, 100);
values["CN"] = r.Next(0,…

Rıza Korkusuz
- 1
- 4
0
votes
1 answer
I am not able to view Chattisgarh state from India, when I am trying to plot map of India with gvisGeochart
I have with me data for all Indian states with its population. I have used following code
`G3 <- gvisGeoChart(Population, "States", "Population",
options=list(region="IN", displayMode="regions",
resolution="provinces",
width=600,…

Hena
- 1
- 2
0
votes
1 answer
gvisGeoChart with shiny Dashboard
Unable to get output for givsGeoChart in my shiny Dashboard.
Below is the code for the same.
library(shiny)
library(shinydashboard)
library(googleVis)
ui <- dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody(
…

Abhinav Garole
- 85
- 6
0
votes
1 answer
gvisGeoChart India province level
I am looking to use gvisGeoChart for provinces of India.
G <- gvisGeoChart(ageProfile, "State", "Males", options=list( region = "IN", displayMode="regions", resolution="provinces" ))
But i am looking for the right visual for India just like the…

Navin Manaswi
- 964
- 7
- 19
0
votes
0 answers
Mapping a categorical variable with googleVis
I am attempting to create a map in which each US state is colored according to a character type categorical variable. I am able to get the map to render, but all of the tooltips show a numeric value instead of the character string in my variable.…

David Zornek
- 91
- 7
0
votes
1 answer
R googleVis: How can I gvisGeoMap multiple variables using markers
I have a dataframe in which some states are characterized by two variables. Briefly you can think of every row as a vector of (state,var1,var2). I want to map states using googleVis package. My approach is to use markers whose size and color…

kthouz
- 411
- 7
- 16