繁体   English   中英

将 shiny 集成到另一个 web 页面

[英]integrating shiny to another web page

I have created a web page using R packages in Shiny web application and have published it to shiny.io. 我该怎么做才能将此页面包含为另一个网站的子页面并与 Javascript 函数进行一些可能的交互?

您可以使用 iframe 标签将 Shiny 应用程序嵌入到 web 页面中,如下所示:

<html>
<head><title>Shiny App Iframe</title></head>
<body>
<iframe src="URL of your shiny app at shinyapps.io" style="border: none; width: 100%; height: 850px" frameborder="0"></iframe>
</body>
</html>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM