如何在圖片內手動添加圖例。我試圖在網上找到答案,但未能找到合適的答案。請指教。如何用ggplot2手動添加圖例
感謝您的幫助提前。
p = ggplot(gData, aes(seq, mue)) + geom_line(aes(x = seq, y = mue), lty=1, lwd=1) + xlim(-10, 10) + ylim(-1.0, 1.0) +
xlab(expression(paste(u[t-1],sep = ""))) + ylab(expression(paste(mu[t],""))) +
geom_line(aes(x = seq, y = se1), type="b", lty=2, lwd=1.1) + geom_line(aes(x = seq, y = se2), type="b", lty=2, lwd=1.1) +
theme(axis.title.x = element_text(face = "bold", color = "black", size = 14),
axis.title.y = element_text(face = "bold", color = "black", size = 14))
不知道如果我的理解正是你正在嘗試做的,但你可以調整與'主題'legend.position'參數圖例的位置()'函數,例如'主題(legend.position = 「頂部」)'。該函數也可以將座標作爲參數。看到這裏(http://www.cookbook-r.com/Graphs/Legends_%28ggplot2%29/)瞭解如何改變'ggplot2'中的圖例的一些例子。 – rseubert 2014-10-05 10:29:40