width = 200
ピクセル単位で言うと、ピクセルを使用することを望んでいるように見えるドキュメントからはあまり明確ではありませんが、適切にスケーリングされる「自動」という言葉を使用できます。
私の関数の1つからのスニペット:
# where plotdt has my data with columns px and py
plot1 <- gvisBarChart(plotdt,
xvar = px,
yvar = c(py),
options = list(width = "automatic",
height = "automatic")
あなたの場合に注意して、オプションリストに追加してください
gvisColumnChart(df,
options=list(legend='none',
width = "automatic",
height = "automatic"))
これが他の人に役立つことを願っています。
さらに、構成オプションの詳細については、便利なリンク. これは棒グラフ用なので、ページの左側で適切なグラフ/テーブル タイプを選択してください。
試して
df
これで遊びたい人のために上のデータがないので:
library('googleVis')
# some test data, add your own
df <- data.frame(x = c(1,2,3),
y = c(2,4,6))
plotdata <- gvisColumnChart(df,
options=list(legend='none',
width = "automatic",
height = "automatic"))
plot(plotdata)