我试图通过googleVis在R中制作一个图表.
如何使图表自动适应屏幕的大小,或者更确切地说是浏览器的大小?
library('googleVis')
Column <- gvisColumnChart(df,
options=list(legend='none'))
plot(Column)
cat(createGoogleGadget(Column), file="columnchart.xml")
最佳答案 从文档来看,不是很清楚,谁似乎想要你使用像素,比如宽度= 200像素,但你可以使用“自动”这个词,它可以很好地缩放.
所以我的一个功能片段:
# 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"))
希望这有助于其他人.
另外,有关configuration options的更多信息.这是条形图,因此请在页面左侧为您选择正确的图表/表格类型.
测试它
由于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)