我是该项目的所有者以及Google云端平台的结算帐户,我想将详细结算导出到文件但我得到:
“您无权更新此广告”
当我点击p1<-ggplot(data=diamonds)+geom_bar(aes(x=cut,fill=color))+scale_x_discrete("")+ylab("")+ggtitle("Title 1")+guides(fill = guide_legend(title.position = "top",nrow=1))+theme(legend.position = "top", plot.title=element_text(hjust = 0,vjust=-1))
p2<-ggplot(data=diamonds)+geom_bar(aes(x=cut,fill=color))+scale_x_discrete("")+ylab("")+ggtitle("Title 2")
g_legend<-function(a.gplot){
tmp <- ggplot_gtable(ggplot_build(a.gplot))
leg <- which(sapply(tmp$grobs, function(x) x$name) == "guide-box")
legend <- tmp$grobs[[leg]]
return(legend)}
mylegend<-g_legend(p1)
grid.arrange(mylegend,nrow=2,heights=c(0.2,1),
arrangeGrob(p1+ theme(legend.position="none"),
p2+ theme(legend.position="none"),
top = textGrob("Main Title", vjust =-6, gp = gpar(fontface = "bold", cex = 1.5)),
left = textGrob("Global Y-axis Label", rot = 90, vjust = 2.5),
bottom = textGrob("Global X-axis Label", vjust =-1),
nrow=1))
和Billing->Billing Export->File Export
时(命名和JSON / CSV - 无所谓)。
我在那里失踪了什么?是否有一些特殊权限,默认情况下所有者没有?另一方面,我可以启用计费导出到BigQuery。
答案 0 :(得分:0)
哦,在隐身模式下,我得到了那条消息&#34;你指定的存储桶不存在&#34;从那时起非常直接,谢谢@ JL-HN! 我不得不在Google Storage上创建存储桶,并将其提供给导出文件以用于计费目的。