【问题标题】:Creating a page of text in flexdashboard R在 flexdashboard R 中创建文本页面
【发布时间】:2017-03-10 20:43:21
【问题描述】:

我创建了一个三页的 flexdashboard,每页中有 3-4 个选项卡(使用 rmarkdown)。我的目标是包含一个仪表板概览页面,其中包含有关如何导航应用程序的描述以及有关如何与我联系的信息。但是,我还没有弄清楚如何将看起来像典型 rmarkdown 格式的东西插入到 flexdashboard 中?当我查看 flexdashboard 的格式时,它们只包含图表,即代码块。有没有办法在 flexdashboard 页面中包含几段带有标题、项目符号和链接的文本?

【问题讨论】:

    标签: r r-markdown flexdashboard


    【解决方案1】:

    它与降价非常相似。这是一个示例,其中第一个选项卡中有 3 个选项卡和文本 - 它有标题、文本、链接和项目符号:

    Column {.tabset}
    -----------------------------------------------------------------------
    
    ### Text
    
    #### this is a header
    This is text [link](http://www.example.com)
    
    - one
    - two 
    - three
    
    
    
    ### Table
    
    ```{r}
    summary(cars)
    ```
    
    ### Plot
    
    ```{r}
    plot(pressure)
    ```
    

    【讨论】:

    • 完美。像魅力一样工作。谢谢
    猜你喜欢
    • 2019-06-25
    • 2023-03-09
    • 2018-09-26
    • 2018-03-10
    • 2018-05-22
    • 1970-01-01
    • 2018-05-02
    • 2023-03-23
    • 2019-11-08
    相关资源
    最近更新 更多