gpt4 book ai didi

r - ioslides Markdown 演示幻灯片中的全尺寸 Shiny 应用

转载 作者:行者123 更新时间:2023-12-01 02:01:06 24 4
gpt4 key购买 nike

试图弄清楚如何在 ioslides markdown 中拥有一个全尺寸 Shiny 的应用程序。我有一些几乎可以工作的东西,但它有点临时。我也不确定当我在更大分辨率的屏幕上显示演示文稿时它会重现(因为我在 px 中使用 div )?:

---
title: "My Title"
author: "My Name"
date: "29 March 2016"
runtime: shiny
output:
ioslides_presentation
---
##

<div style="margin-left:-50px; margin-top:-50px; width:80%; height:100%">
```{r, echo=FALSE, message=FALSE, fig.width=8}
inputPanel(
selectInput("n_breaks", label = "Number of bins:",
choices = c(10, 20, 35, 50), selected = 20),

sliderInput("bw_adjust", label = "Bandwidth adjustment:",
min = 0.2, max = 2, value = 1, step = 0.2)
)

renderPlot({
hist(faithful$eruptions, probability = TRUE, breaks = as.numeric(input$n_breaks),
xlab = "Duration (minutes)", main = "Geyser eruption duration")

dens <- density(faithful$eruptions, adjust = input$bw_adjust)
lines(dens, col = "blue")
})
```
</div>

给予:

enter image description here

哪种使用了一些大的边距空间(根据需要)但仍然没有覆盖整个幻灯片。

最佳答案

尝试使用您的 div<> 中的值.您可以超过 100% 并以像素为单位设置大小,例如<div style="margin-left:-120px; margin-top:-50px; width:900px">

关于r - ioslides Markdown 演示幻灯片中的全尺寸 Shiny 应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36287791/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com