В файле уценки R, кто-то знает, почему параметры out.width
, out.height
, figure.width
и figure.height
не изменяют размер графиков при создании PDF-файла?(Я уточняю, что такие параметры отлично работают, используя функцию plot
)
Ниже приведен воспроизводимый пример с файлом Rmarkdown
В этом примере мне бы хотелосьсюжетная диаграмма, чтобы занять весь лист, как график.
---
title: "Change chart size chart on pdf file using plotly"
output:
pdf_document: default
---
```{r setup, include = FALSE}
knitr::opts_chunk$set(echo=FALSE,message=FALSE)
```
## Parameters doesn't work with plotly
```{r, out.width='100%',out.height='100%',fig.height=20, fig.width=15, fig.align="left"}
library(plotly)
plot_ly(x = cars[1:10,]$speed,y = cars[1:10,]$dist)
```
## Parameters works using plot function
```{r,out.width='130%',out.height='100%', fig.height=20, fig.width=15, fig.align="left"}
plot(cars[1:10,])
```