第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

我們可以將標(biāo)題保留在 rmarkdown 的 html 輸出中的繪圖對(duì)象的頂部嗎?

我們可以將標(biāo)題保留在 rmarkdown 的 html 輸出中的繪圖對(duì)象的頂部嗎?

慕尼黑的夜晚無繁華 2023-09-04 15:27:52
下面的 markdown 顯示了使用 成功到達(dá) ggplot 圖形頂部的標(biāo)題,但使用plotly對(duì)象則fig.topcaption=TRUE不行的問題。我在這里了解了Fig.topcaption 。底層代碼似乎fig.topcaption位于knit中,盡管它要么與繪圖數(shù)據(jù)不兼容,要么可能與 pandoc、或 html/html 小部件相關(guān),或者在從 rmarkdown 到最終輸出的鏈中的其他位置。我對(duì)目前的解決方案很滿意 - 有建議嗎?---title: "Untitled"author: "Internet"date: "29 février 2020"output:  bookdown::html_document2---```{r setup, message=FALSE, echo=FALSE}library(knitr)library(ggplot2)library(plotly)```Here is a ggplot object with caption at the top as desired.```{r, fig.cap="Hello ggplot", fig.topcaption=TRUE, message=FALSE, echo=FALSE}ggplot(diamonds,aes(price,carat)) + geom_point()```Here is the previous ggplot converted to a plotly object with caption reverting to the bottom.```{r, fig.cap="Hello plotly", fig.topcaption=TRUE, message=FALSE, echo=FALSE}my_ggplot <- ggplot(diamonds,aes(price,carat)) + geom_point()ggplotly(my_ggplot)```Caption reverts to bottom even if plotly object is not created from ggplot object```{r, fig.cap="Hello plotly2", fig.topcaption=TRUE, message=FALSE, echo=FALSE}plot_ly(  x=c(1,2,3),  y=c(5,6,7),  type='scatter',  mode='lines')```
查看完整描述

1 回答

?
達(dá)令說

TA貢獻(xiàn)1821條經(jīng)驗(yàn) 獲得超6個(gè)贊

以下技巧適用于 HTML 輸出。

我們可以將圖形格式化為表格(僅將圖像作為單元格)并將段落(圖形標(biāo)題所在的位置)格式化為表格標(biāo)題并將其放在頂部。


只需將此 CSS 塊放在 YAML 下方:


```{css plotly-caption, echo = FALSE}

div.figure {

  display: table;

}

div.figure p {

  display: table-caption;

  caption-side: top;

}

```


查看完整回答
反對(duì) 回復(fù) 2023-09-04
  • 1 回答
  • 0 關(guān)注
  • 135 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)