R - Shiny

R - Shiny

150 bookmarks
Custom sorting
Exploring Data - Creating Reactive Web Apps with R and Shiny
Exploring Data - Creating Reactive Web Apps with R and Shiny
I developed a web application to enable exploration of the data collected by a survey of software testers. I explain how R and Shiny can be used to create reactive web applications which make data accessible to a wider audience.
·blog.scottlogic.com·
Exploring Data - Creating Reactive Web Apps with R and Shiny
No Framework, No Problem! Structuring your project folder and creating cust
No Framework, No Problem! Structuring your project folder and creating cust
Pedro Coutinho Silva is a software engineer at Appsilon Data Science. It is not always possible to create a dashboard that fully meets your expectations or requirements using only existing libraries. Maybe you want a specific function that needs to be custom built, or maybe you want to add your own style or company branding. Whatever the case, a moment might come when you need to expand and organize your code base, and dive into creating a custom solution for your project; but where to start?
·rviews.rstudio.com·
No Framework, No Problem! Structuring your project folder and creating cust
Shiny
Shiny
Shiny is a package that makes it easy to create interactive web apps using R and Python.
Shiny was designed with an emphasis on distinct input and output components in the UI. Inputs send values from the client to the server, and when the server has values for the client to display, they are received and rendered by outputs.
You want the server to trigger logic on the client that doesn’t naturally relate to any single output.
You want the server to update a specific (custom) output on the client, but not by totally invalidating the output and replacing the value, just making a targeted modification.
You have some client JavaScript that isn’t related to any particular input, yet wants to trigger some behavior in R. For example, binding keyboard shortcuts on the web page to R functions on the server, or alerting R when the size of the browser window has changed.
·shiny.posit.co·
Shiny
R Shiny Security: How to Make Your Shiny Apps Secured – R-Craft
R Shiny Security: How to Make Your Shiny Apps Secured – R-Craft
Securing your Shiny application is not just an added feature; it’s a fundamental necessity. Often, functionality and design are prioritized in development, but ensuring the security of your app is equally important, if not more so. Shiny security involves more than just adhering to general programming best practices like utilizing environment variables instead of hardcoding […] The post appeared first on appsilon.com/blog/.
·r-craft.org·
R Shiny Security: How to Make Your Shiny Apps Secured – R-Craft
Pimping your shiny app with a JavaScript library : an example using sweetalert2 – R-Craft
Pimping your shiny app with a JavaScript library : an example using sweetalert2 – R-Craft
You can read the original post in its original format on Rtask website by ThinkR here: Pimping your shiny app with a JavaScript library : an example using sweetalert2 You think that some of the components of {shiny} are not very functional or downright austere? Are you looking to implement some feature in your app but it is not available in the {shiny} toolbox? Take a look at JavaScript! JavaScript is a very popular programming language that is often used to add features to web pages. With HTML and This post is better presented on its original ThinkR website here: Pimping your shiny app with a JavaScript library : an example using sweetalert2
·r-craft.org·
Pimping your shiny app with a JavaScript library : an example using sweetalert2 – R-Craft
Introduction
Introduction
Shiny Server @CNR-IBBA. Contribute to cnr-ibba/shiny-server development by creating an account on GitHub.
·github.com·
Introduction
Chapter 10 JavaScript for Shiny | Outstanding User Interfaces with Shiny
Chapter 10 JavaScript for Shiny | Outstanding User Interfaces with Shiny
Designing an outstanding interface is not just about making it look nice with HTML and CSS. How do we handle interactivity, widget creation and data flow between R and JS? This is where JavaScript...
·unleash-shiny.rinterface.com·
Chapter 10 JavaScript for Shiny | Outstanding User Interfaces with Shiny
David Granjon on Twitter
David Granjon on Twitter
(2/4) Earning few JS skills for #RStats #shiny has loads of benefits:- Ease debugging (like {htmlwidgets} issues): https://t.co/Eitgrt8aG3.- Add new inputs/widgets: https://t.co/W9dR3IB65J- Optimize apps: less code from the server (R): https://t.co/ClqdAXok15 pic.twitter.com/IfQh4D477k— David Granjon (@divadnojnarg) May 30, 2022
·twitter.com·
David Granjon on Twitter
Using Microsoft365R with Shiny
Using Microsoft365R with Shiny
by Hong Ooi This article is a lightly-edited version of the "Microsoft365R and Shiny" vignette in the latest Microsoft365R release. We describe how to incorporate Microsoft365R and interactive authentication with Azure Active Directory (AAD) into a Shiny web app. There are a few steps involved: Register your app with AAD Use the app ID to authenticate and get an OAuth token Pass the token to the Microsoft365R functions App registration The default Microsoft365R app registration only works when the package is used on a local machine; it does not support running in a remote server. Because of this, when you...
·blog.revolutionanalytics.com·
Using Microsoft365R with Shiny
How to update data in shiny app periodically?
How to update data in shiny app periodically?
I have deployed shiny server with several shiny apps. Each app is used as online dashboard which should be refreshed periodically (e.g. every 2 hours or at 10pm every day) according to my plan. N...
·stackoverflow.com·
How to update data in shiny app periodically?
The Best Resources for Learning Shiny App Development
The Best Resources for Learning Shiny App Development
The Hosting Data Apps website is dedicated to help you learn about your hosting options. As outlined in the opening post, data app development related content is kept to a minimum. In this post we list resources that provide accessible introduction to Shiny app development.
·hosting.analythium.io·
The Best Resources for Learning Shiny App Development
Supplement to Shiny in Production
Supplement to Shiny in Production
This document is full of supplemental resources and content from the Shiny in Production Workshop delievered at rstudio::conf 2019.
·kellobri.github.io·
Supplement to Shiny in Production