R shiny-server 工程化的几个问题
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 资源这种东西,往往一搜一大把,最终多是躺在浏览器里或是硬盘里吃灰。楼主若是有心,整理一份中文文档,造福一方,投给咱们统计之都。
- Effectively Deploying and Scaling Shiny Apps with ShinyProxy, Traefik and Docker Swarm: A tutorial for securely and effectively deploying scalable and production-grade R Shiny apps with ShinyProxy, Docker Swarm and Traefik. https://www.databentobox.com/2020/05/31/shinyproxy-with-docker-swarm/
- Deploying Secure and Scalable Streamlit Apps on AWS with Docker Swarm, Traefik and Keycloak. https://www.databentobox.com/2020/10/08/python-apps-with-docker/
- Production-Grade Container Scheduling and Management. https://github.com/kubernetes/kubernetes
- ShinyProxy: Open Source Enterprise Deployment for Shiny https://github.com/openanalytics/shinyproxy
- Docker Compose: Define and run multi-container applications with Docker https://github.com/docker/compose
- 在线建模分析展示平台 https://github.com/ShichenXie/dstudio
- Information for the Docker for Data Science Tutorial at useR!2019 https://github.com/openanalytics/useR-2019-docker-for-data-science
- 谭显英, 使用 ShinyProxy 部署 Shiny Apps https://github.com/shrektan/Use-ShinyProxy-To-Deploy-ShinyApps
https://www.bilibili.com/video/BV1cU4y1T7x5/ - Docker 命令手册 https://www.kancloud.cn/woshigrey/docker/934967
- kubernetes 从入门到实践 https://www.kancloud.cn/huyipow/kubernetes/531982
- Orchestration 编排 https://docs.docker.com/get-started/orchestration/
- Deploy to Swarm https://docs.docker.com/get-started/swarm-deploy/
plumber 开发api也可以试试( ’ - ’ * )
16 天 后
1 个月 后
nan.xiao 2 - ggplot2 responsive panels with shiny and facet_wrap()
这个链接打不开啊,不知道是不是我这边没有科学上网的缘故。
chuxinyuan
gist.github.com 国内应该是需要科学一下的。