傍晚。我開始圍繞ggplot2開始研究,並且今天設法創建了一堆地塊。 但是我碰到了兩個問題。第一種是輸出在自動創建圖表時的樣子。 有人可以請我直嗎?ggplot2文件輸出問題
當我手動運行的情節使用...
ggplot(l.Exploration$Data,aes_string(x="domain",y="WP0", color="domain")) +
geom_point(position=position_jitter(width=0.3), alpha=0.4) +
geom_boxplot(size=1,alpha=0.9, outlier.size=1, outlier.shape=21, width=0.75, notch=TRUE) +
facet_wrap(~Exchange, ncol=2) +
ggtitle(plotTitle) +
theme(plot.title=element_text(size=rel(1.5), lineheight=.9, face="bold", colour="black")) +
xlab("Exchange") +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
ylab("Weighted Price ($USD)")
我得到一個整潔的情節如此...
但是當我創建的情節作爲循環的一部分,讓他們自動保存他們看起來很糟糕(是的,我知道aes_string(...,Y="WP0")
是應該使用i
的位,但我無法弄清楚)。
第二個問題是如何正確地指定爲aes_string Y.(我將在移動到另一個問題)
l_ply(-3:3, function(i){
print(i)
path <- "~/Documents/1. Dev/r/data/plot"
filename <- paste(path,"/Story_Price",i,".png",sep="")
yCol <- paste("l.Exploration$Data$WP",i,sep="")
if(i < 0) { plotTitle <- paste("Story Publication Against Price\n[Lead = ",i,"]",sep="")
} else if (i==0) { plotTitle <- paste("Story Publication Against Price",sep="")
} else if (i>0) { plotTitle <- paste("Story Publication Against Price\n[Lag = ",i,"]",sep="")
}
ggplot(l.Exploration$Data,aes_string(x="domain",y="WP0", color="domain")) +
geom_point(position=position_jitter(width=0.3), alpha=0.4) +
geom_boxplot(size=1,alpha=0.9, outlier.size=1, outlier.shape=21, width=0.75, notch=TRUE) +
facet_wrap(~Exchange, ncol=2) +
ggtitle(plotTitle) +
theme(plot.title=element_text(size=rel(1.5), lineheight=.9, face="bold", colour="black")) +
xlab("Exchange") +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
ylab("Weighted Price ($USD)")
dev.print(png, filename,res=600, height=1600, width=2500, units="px")
})
使用'ggsave',而不是'dev.print'。 – Gregor