- 已编辑
zizhou 我猜测你是单节点部署,若有内存和资源,用 K8s 和 Docker Swarm 可以增加些容量,支持多人访问,当然,人数要是很多,那还是得加机器。
参考视频 【谭显英:使用 ShinyProxy 部署 Shiny Apps | 第14届中国R会软件工具专场(一)-哔哩哔哩】 https://b23.tv/A0uksfS
zizhou 我猜测你是单节点部署,若有内存和资源,用 K8s 和 Docker Swarm 可以增加些容量,支持多人访问,当然,人数要是很多,那还是得加机器。
参考视频 【谭显英:使用 ShinyProxy 部署 Shiny Apps | 第14届中国R会软件工具专场(一)-哔哩哔哩】 https://b23.tv/A0uksfS
1 - session$reload()
2 - ggplot2 responsive panels with shiny and facet_wrap()
3 - Mastering Shiny 和 awesome-shiny-extensions
4/5/6 - 采购 Posit Connect 是最容易的解决方案。
nan.xiao ggplot2 responsive panels with shiny and facet_wrap()
我纯属小跑个题:
if (width >= 1140) p <- p + facet_wrap(vars(class), ncol = 4)
if (width >= 960 & width < 1140) p <- p + facet_wrap(vars(class), ncol = 2)
if (width < 960) p <- p + facet_wrap(vars(class), ncol = 1)
为了少重复几次代码,我一般用这种鬼都看不懂的火星写法:
i <- (width >= 960) + (width >= 1140) + 1
p <- p + facet_wrap(vars(class), ncol = c(1, 2, 4)[i])
要是断点太多的话,就上 findInterval()
了。
zizhou 资源这种东西,往往一搜一大把,最终多是躺在浏览器里或是硬盘里吃灰。楼主若是有心,整理一份中文文档,造福一方,投给咱们统计之都。
plumber 开发api也可以试试( ’ - ’ * )
nan.xiao 2 - ggplot2 responsive panels with shiny and facet_wrap()
这个链接打不开啊,不知道是不是我这边没有科学上网的缘故。
chuxinyuan
gist.github.com 国内应该是需要科学一下的。