2017-01-12 24 views
0

インドのすべての州とその人口に関するデータがあります。私はマップが適切に来るインドからChattisgarh州を見ることができません。インドの地図をgvisGeochartでプロットしようとしています。

`G3 <- gvisGeoChart(Population, "States", "Population", 
    options=list(region="IN", displayMode="regions", 
    resolution="provinces", 
    width=600, height=400)) 
    plot(G3)` 

次のコードを使用しているが、国家チャッティースガル州のためのデータ(データは私がアップロードされたテキストファイルである)が表示取得されていません。 ウェブ上に同様のグラフが表示されていますが、同じグラフも表示されません。

http://visual.yantrajaal.com/2015/05/googlevis-best-of-r-and-googlecharts.html

+0

は、あなたが受け入れられたとして、それをマークしてくださいだろうか? –

答えて

0

あなたは(Chh...で)ChhattisgarhChattisgarhを交換する場合、それは動作します。二つのグラフを比較します

library(googleVis) 
StateMilk <- read.table(
    text = "State 'Cow Milk CD' 'Cow Milk ND' 'Cow Milk Total' 'Buffalo Milk' 'Goat Milk' Total 
'Andhra Pradesh' 1268.0 1054.0 2322.0 6603.0 0.4 8925.0 
'Arunachal Pradesh' 9.0 23.0 32.0 NA NA 32.0 
Assam 166.0 462.0 628.0 100.0 25.0 752.0 
Bihar 986.0 1958.0 2943.0 2623.0 216.0 5783.0 
Chattisgarh 56.0 471.0 527.0 296.0 43.0 866.0", 
    header = TRUE, stringsAsFactors = FALSE) 
plot(gvisGeoChart(StateMilk, "State", "Total", 
        options=list(region="IN", displayMode="regions", resolution="provinces", width=600, height=400))) 

Chattisgarh wont display

StateMilk_with_2_h <- StateMilk 
StateMilk_with_2_h$State[StateMilk_with_2_h$State == "Chattisgarh"] <- "Chhattisgarh" 
plot(gvisGeoChart(StateMilk_with_2_h, "State", "Total", 
        options=list(region="IN", displayMode="regions", resolution="provinces", width=600, height=400))) 
私の答えはあなたの問題を解決した場合は

Chhattisgarh displays

関連する問題