基于R语言的shiny网页工具开发小技巧系列-04
六年前还在上海工作的时候,机缘巧合接触了使用R语言的shiny体系搭建网页工具的技术,就一直身体力行的在我们生物信息学圈子里面推广它。
自己一个人能做的很有限,很庆幸这些年有各式各样的小伙伴加入我们《生信技能树》小圈子,一起建设shiny知识体系。最近有空,就安排实习生整理了一下我们的生信技能树论坛上面的shiny板块的一些笔记:
4-把shiny代码嵌合在markdown文档里面,制作交互文档!
它们可以互相嵌套,非常好用,非常方便:
---
output: html_document
runtime: shiny
---
```{r echo=FALSE}
sliderInput("num", "Choose a number",
0, 100, 20)
renderPlot({
plot(seq(input$num))
})
```
或者:
column(8, align="center", offset = 2,
includeMarkdown("home.Rmarkdown"),
tags$style(type="text/css", "#string { height: 50px; width: 100%; text-align:center; font-size: 30px; display: block;}")
)
假如这是调用的那个home.Rmarkdown的内容
# Say Hello to biotrainee
Biotrainee is a web forum focused on **bioinformatics**, with many tutorials worth learning, covering a wide range of aspects. At the same time, there is also a account of Wechat: 生信技能树
* [Biotrainee](www.biotrainee.com)
* [生信技能树](https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzAxMDkxODM1Ng==)
那么展示结果就是