Book Image

Web Application Development with R Using Shiny Second Edition - Second Edition

By : Chris Beeley
Book Image

Web Application Development with R Using Shiny Second Edition - Second Edition

By: Chris Beeley

Overview of this book

R is a highly flexible and powerful tool for analyzing and visualizing data. Most of the applications built using various libraries with R are desktop-based. But what if you want to go on the web? Here comes Shiny to your rescue! Shiny allows you to create interactive web applications using the excellent analytical and graphical capabilities of R. This book will guide you through basic data management and analysis with R through your first Shiny application, and then show you how to integrate Shiny applications with your own web pages. Finally, you will learn how to finely control the inputs and outputs of your application, along with using other packages to build state-of-the-art applications, including dashboards.
Table of Contents (14 chapters)
Web Application Development with R Using Shiny Second Edition
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Applications in this chapter


In order to better understand the layout functions in particular, we're not going to add any functionality in this chapter. We'll start off with the vanilla Google Analytics application we saw in Chapter 2, Building Your First Application, and will apply different types of layout to it, so you can see how they work. As we progress, we will add one or two extra features (querying client data from the browser and another type of map). However, we will mainly focus on looking at the same application but with different types of layout function applied to it.

It is highly recommended that you download and run all the code in this chapter, so you can get a better sense of how the applications work as well as seeing the server.R code in each case, which won't be repeated for each application. If you're not in front of a computer while you are reading this section, hopefully, there are enough screenshots and explanatory material to keep you going until you can see the...