私はいくつかのデータを表示する非常に単純なアプリケーションを持っています。 これをiframeを使用してSharePointサイトに埋め込むにはどうすればよいですか? またはこれを行うより簡単な方法はありますか?iframeタグ付きSharePointにshiny appを埋め込む方法
library(ggplot2)
library(shiny)
library(DT)
library(readr)
PRTypeCount <- read_csv("H:/SP/PRTypeCount.txt")
ui <- navbarPage(
title = 'PRTypeCount',
tabPanel('PRTypeCount', DT::dataTableOutput('PRTypeCount')))
server<-function(input, output) {
output$PRTypeCount <- DT::renderDataTable(
DT::datatable(PRTypeCount, options = list(pageLength = 25))
)
}
shinyApp(ui = ui, server = server)
あなたのアプリは光沢のあるサーバーまたはshinyapps.ioで動作していますか? –
ご意見ありがとうございます。私はshinnyに精通していない。いいえ、私は実際のサーバーにはありません。 いいえ、私はshinyapps.ioに持っていません – Jialun
はい。シャイニーアプリはサーバー上で実行する必要があります。shinyapps.ioサーバーを使用することもできます。 –