我有一个简单的(2列)数据框,我试图用googleVis地理图表绘制。一列是分类(州),另一列是连续的(现金)。
我无法在图例和工具提示显示中将现金格式化为现金(例如,格式化为“$ 100,000”而不是数据框中显示的“100000”)。
我似乎无法找到解决此问题的任何内容。这是我的代码:
cash = c(100000,200000,175000)
state = c("Arizona","Connecticut","Washington")
data = data.frame(cash,state)
GeoStates = gvisGeoChart(data, "State", "Cash" ,
options=list(region="US",
displayMode="regions",
resolution="provinces",
width=600, height=400,
colorAxis ="{minValue: 0,
colors [#deebf7', '#3182bd']}"))
plot(GeoStates)
有人可以帮忙吗?
感谢。