1
我使用tikzDevice
包來獲取R
中的乳膠友好圖。我有從下圖的頂部和底部排出過剩的空格麻煩: ggplot2和TikzDevice - 刪除空白
我一直在使用par(mar)
嘗試,但它似乎並沒有與ggplot2
工作。另外,theme(plot.margins)
也似乎沒有反應。我嘗試用theme(aspect.ratio)
來改變圖形的長寬比,因此引入了空格。 有什麼建議嗎? 謝謝!
編輯:這裏是一個MWE:
library(tikzDevice)
library(reshape2)
x = seq(0,1,0.1)
y1 = x^2+2*x+7
y2= x^+2*x+2
df = data.frame(x,y1,y2)
df <- melt(df, id.vars=c("x"))
names(df) <- c("x","$latex~Name$","value")
plot <- ggplot(df,aes(x=x,y=value,color=`$latex~Name$`,group=`$latex~Name$`)) + geom_line() +
theme(aspect.ratio = 0.4)
plot
tikzDevice(file="mweTex.tex")
plot
dev.off()
一些代碼如何?不知道你在這裏做什麼,情節看起來打破了我。 –
另請參閱http://stackoverflow.com/a/36029298/471093 – baptiste