我正在尝试调整我的Rmarkdown文档中的饼图,以便它跨越页面的宽度或至少变得足够宽以适合所有标签。
我已尝试过所有内容 - 使用figure.height
和figure.width
调整par(mar)
和par(oma)
,边距,但似乎没有任何效果。馅饼本身变得更小,或者标签更加切断。我希望馅饼尽可能大,带有清晰可见的标签,但每次都会呈现小馅饼和小标签。
是否至少有一种解决方法,以便标签不会被切断(或者可以与相邻的图表重叠)?任何建议,将不胜感激。
```{r, figure.align = "center", figure.height = 10, figure.width = 12}
par(mfrow=c(1,3), cex.axis=1.5, cex.lab=1.5)
par(mar = c(4,2,4,2))
par(oma = c(3, 3, 3, 3))
pie(a, labels = lbls, font = 2, col = c("tomato", "white"), cex=2)
pie(b, lbls2, font = 2, col = c("tomato", "white"), cex=2)
mtext(side=3, text="Plan Breakdown: Top 20% of Users")
pie(c, lbls3, font = 2, col = c("tomato", "white"))
答案 0 :(得分:2)
您可以尝试使用chunk选项'out.width'。这是我使用的Rmd文件。我认为它能满足您的需求。
---
output: pdf_document
---
```{r, out.width='\\textwidth', fig.height = 8, fig.align='center'}
pie(c(0.57, 0.43), font = 2, col = c("tomato", "white"))
pie(c(0.57, 0.43), font = 2, col = c("blue", "orange"))
```
答案 1 :(得分:2)
除非指定out.width,否则图形大小受文档边距的限制。如果您的图形宽度大于页面的边距,则R Markdown / knitr将创建指定宽高比的图形,但将其缩小以适合边距。
要解决此问题,请使用out.width在pdf中设置绘图的宽度和高度。类似的东西:
```{r, fig.align = "center", fig.height = 8, fig.width = 8,
out.width = "8.5in"}
pie(a, labels = lbls, font = 2, col = c("tomato", "white"), cex=2)
pie(b, lbls2, font = 2, col = c("tomato", "white"), cex=2)
mtext(side=3, text="Plan Breakdown: Top 20% of Users")
pie(c, lbls3, font = 2, col = c("tomato", "white"))
````
有关详细信息,请参阅this page on knitr chunk options。
答案 2 :(得分:0)
我遇到了同样的问题,默认情况下似乎应用了一些裁剪,将其添加到对我有用的yaml标头中:
output:
pdf_document:
fig_crop: no