欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

使繪圖適合Quarto revealjs中的空間列布局

黃文隆1年前8瀏覽0評論

我有一個代碼和一個地圖,我想在邊上繪圖,所以我使用輸出位置:列。然而,與代碼相比,地圖顯得非常小。有沒有辦法讓它適合寬度和高度?

我已經嘗試過減少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()
```

enter image description here

您可以使用最大寬度,但我希望有更好的方法:

---
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()
```

enter image description here