Using Shiny to Build Web Applications

Slides:



Advertisements
Similar presentations
Technology in the News Name of Topic By First and Last Name.
Advertisements

Chapter 5: Hiding implementation ● Two viewpoints regarding classes: – Implementor of a class: knows everything about class – User of a class: Only wants.
touchdevelop vs. apps with Visual Studio
T HE S HINY A PP Presented by: Lance Cundy Great Plains R Users Group November 15, 2013.
Copying Web images (the right mouse button is your friend) Skills: Copy a Web image, see the properties of a Web image, use the right mouse button IT concepts:
Build a SharePoint App with Microsoft Access. About me.
UcfNoiseProfiler EEL 6788: Advanced Topics in Computer Networks (Spring 2011) Professor: Dr. Damla Turgut Presented By: Rene Chacon.
1 Project 7: My Photo Album Graded Project. 2 Assignment Write a web app to permit users to upload and view photos. User can keep up to five photos on.
(Include a suitable picture for the presentation) (Presenter’s video will come in this area during presentation. Do not use this area in any slide) By:
SHINING WITH SHINY: INTRODUCING A WEB APPLICATION FRAMEWORK FOR R Gokul Bhandari.
1 Project 4: XML Product Browser (Not Graded). Objectives This project is an exercise of the following knowledge and skills: Accessing and displaying.
Using Web Services to Create Events Web Services Explained And a Production Ready Example.
Object Oriented Programming Examples: C++, Java Advantages: 1. reusibility of code 2. ability to adapt (extend) previously written code.
Jamshed Rahimov Paperless System in Universities.
Java Servlets Lec 27. Creating a Simple Web Application in Tomcat.
1 Project 3: Chomp (Not graded). 2 Project 3 The game of Chomp was described in a Math Trek column in Science News:
Introduction to GitHub Alex Bigazzi Dec. 4, 2013 ITS Lab GitHub Introduction1.
Developing QueryContent for IBIS-PH. Let’s check a few things. 1.Do you have a “Q:\” drive mapped to the backend ibis-q server?
BlackBox Methodology A means of creating efficient and flexible reusable ColdFusion code.
Java Portals and Portlets Submitted By: Rashi Chopra CIS 764 Fall 2007 Rashi Chopra.
FusionInspector & FusionInspectorWeb Galaxy-integration.
Using Google Docs. Objectives Google Docs overview Create G-mail accounts – DO NOT use personal accounts Google Doc Interface Spreadsheet/Form overview.
Manet Charlie Perkins Stan Ratliff, John Dowdell IETF88 Vancouver 7 th November 2013.
First Venture into the Android World Chapter 1 Part 2.
How to embed a video into a power point if you do not have internet access. You will need to download the video to your computer or a flash drive. Drag.
Access The L Line The Express Line to Learning 2007 L Line L © Wiley Publishing All Rights Reserved.
Shell Interface Shell Interface Functions Data. Graphical Interface Graphical Interface Command-line Interface Command-line Interface Experiments Private.
Lecy ∙ Data-Driven Management Lecture 12 Building Shiny Apps.
Walking with Wiki Presentation: Cameron Janzen. Overview What is a Wiki? What is the purpose? Example work Getting started – three main steps Creating.
SW Development Project 2
This material is based upon work supported by the U.S. Department of Energy Office of Science under Cooperative Agreement DE-SC Michigan State.
TYPES OF INTERNET SERVICES.  WWW—World Wide Web Go to Wikipedia and Describe it  This website gives an overview of the history and uses of the World.
1 Project 5: Leap Years. 222 Leap Years Write a program that reads an integer value from the user representing a year and determines if the year is a.
: Information Retrieval อาจารย์ ธีภากรณ์ นฤมาณนลิณี
20-753: Fundamentals of Web Programming Copyright © 1999, Carnegie Mellon. All Rights Reserved. 1 Lecture 15: Java Basics Fundamentals of Web Programming.
2014 Semantic-based Code and Documentation Search Engine Reshma Thumma Oct 10,2014 #GHC
Agenda Steps of App Building The Runtime Environment Managing App Data Debug and Test an App Validate an App Publish an App to a Store Packaging Apps.
1 ERP Support Portal ERP Department 25 th November 2015 User Guide.
University of Kansas Department of Electrical Engineering and Computer Science Dr. Susan Gauch April 21, 2005 I T T C Introduction to Web Technologies.
1 Project 6: New Venue. 2 New Venue Based on the posted New Venue scenario
A tour of new features
Task 2f – part a Prove that you can receive an WITH an attachment, open it AND save the attachment to your user area. Open the with the attachment.
Shiny App with d3 data visualization
Git & Github Timothy McRoy.
External Web Services Quick Start Guide
Exporting references - Ovid
Fluency with Information Technology
Installing and running the local check projects in Eclipse
Using Shiny to Build Web Applications
My web site..
Meghan Haukaas Team: Brett Brist | Chris Ruiz | Ronghui Zuo
PhoneGap Build.
Exporting references - EBSCOhost
Using Servlet Contexts to Deploy Servlets
Financial Affairs Training Webpage Redesign
Evaluating Transaction System Performance
DRM Deployment Readiness Plan
Please thank our sponsors!
PHP and Forms.
Software Development - Version Control
Detecting anomalies in clinical data using interactive graphics
Financial Affairs Training Website
iDigBio API Hackathon ‘15 Introductory Webinar
Enterprise Java Beans.
ICES GitHub GitHub (github.com) is a good place to organize source code: 1 Available for anyone to see, download, and use 2 Selected users can add/modify.
Web Service Security support in the SSE Toolbox
September 12-14, 2018 Raleigh, NC.
Using Veera with R and Shiny to Build Complex Visualizations
Continuous Integration and Delivery (CI/CD) in Azure Data Factory
.NET Core and Kubernetes
Presentation transcript:

Using Shiny to Build Web Applications Dale Plummer Department of Biostatistics November 19, 2014

Present Your Work Link to the publication or other write up put you code and test data on a repository like GitHub produce an R package and post it to CRAN build an application that implements your methods

Shiny Overview Every Shiny app has ui.R and server.R files. These files implement the user interface and the working part of the application You create a Shiny application by making a new directory and saving the ur.R and server.R files inside it. You can run a Shiny app by giving the name of its directory to the R function “runApp()”

Deploy the Application Purpose: make the application available to anyone on the Internet. Using https://www.shinyapps.io/

Some Examples https://cqs.mc.vanderbilt.edu/shiny/RiskPrediction/ http://10.151.20.171:6922/

Questions? Thanks Presentation notes: http://biostat.mc.vanderbilt.edu/wiki/Main/ShinyPresentationNotes These slides are attached to the presentation topic.