我有一個代碼和一個地圖,我想在邊上繪圖,所以我使用輸出位置:列。然而,與代碼相比,地圖顯得非常小。有沒有辦法讓它適合寬度和高度?
我已經嘗試過減少margin:par(mar = c(0,0,0,0)),但是這并沒有改變什么。我也嘗試過整數的out-width和out-height(百分比在revealjs中不起作用),但是這破壞了縱橫比。
有什么想法嗎?
---
format: revealjs
---
## A title
```{r}
#| output-location: column
#| echo: true
library(spData)
library(sf)
library(ggplot2)
#par(mar = c(0, 0, 0, 0))
ggplot() +
geom_sf(data = nz) +
theme_minimal()
```
您可以使用最大寬度,但我希望有更好的方法:
---
format: revealjs
---
<style>
.reveal img {
max-width: 150%;
overflow-x: hidden;
}
</style>
## A title
```{r}
#| output-location: column
#| echo: true
library(spData)
library(sf)
library(ggplot2)
ggplot() +
geom_sf(data = nz) +
theme_minimal()
```
上一篇vue多模塊請求