• Complain

Hadley Wickham - Mastering Shiny: Build Interactive Apps, Reports, and Dashboards Powered by R

Here you can read online Hadley Wickham - Mastering Shiny: Build Interactive Apps, Reports, and Dashboards Powered by R full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2021, publisher: OReilly Media, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Hadley Wickham Mastering Shiny: Build Interactive Apps, Reports, and Dashboards Powered by R
  • Book:
    Mastering Shiny: Build Interactive Apps, Reports, and Dashboards Powered by R
  • Author:
  • Publisher:
    OReilly Media
  • Genre:
  • Year:
    2021
  • Rating:
    5 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 100
    • 1
    • 2
    • 3
    • 4
    • 5

Mastering Shiny: Build Interactive Apps, Reports, and Dashboards Powered by R: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Mastering Shiny: Build Interactive Apps, Reports, and Dashboards Powered by R" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Master the Shiny web frameworkand take your R skills to a whole new level. By letting you move beyond static reports, Shiny helps you create fully interactive web apps for data analyses. Users will be able to jump between datasets, explore different subsets or facets of the data, run models with parameter values of their choosing, customize visualizations, and much more.

Hadley Wickham from RStudio shows data scientists, data analysts, statisticians, and scientific researchers with no knowledge of HTML, CSS, or JavaScript how to create rich web apps from R. This in-depth guide provides a learning path that you can follow with confidence, as you go from a Shiny beginner to an expert developer who can write large, complex apps that are maintainable and performant.

  • Get started: Discover how the major pieces of a Shiny app fit together
  • Put Shiny in action: Explore Shiny functionality with a focus on code samples, example apps, and useful techniques
  • Master reactivity: Go deep into the theory and practice of reactive programming and examine reactive graph components
  • Apply best practices: Examine useful techniques for making your Shiny apps work well in production

Hadley Wickham: author's other books


Who wrote Mastering Shiny: Build Interactive Apps, Reports, and Dashboards Powered by R? Find out the surname, the name of the author of the book and a list of all author's works by series.

Mastering Shiny: Build Interactive Apps, Reports, and Dashboards Powered by R — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Mastering Shiny: Build Interactive Apps, Reports, and Dashboards Powered by R" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Mastering Shiny by Hadley Wickham Copyright 2021 Hadley Wickham All rights - photo 1
Mastering Shiny

by Hadley Wickham

Copyright 2021 Hadley Wickham. All rights reserved.

Printed in the United States of America.

Published by OReilly Media, Inc. , 1005 Gravenstein Highway North, Sebastopol, CA 95472.

OReilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (http://oreilly.com). For more information, contact our corporate/institutional sales department: 800-998-9938 or corporate@oreilly.com .

  • Acquisitions Editor: Jessica Haberman
  • Development Editor: Melissa Potter
  • Production Editor: Christopher Faucher
  • Copyeditor: nSight, Inc.
  • Proofreader: Piper Editorial Consulting, LLC
  • Indexer: Judith McConville
  • Interior Designer: David Futato
  • Cover Designer: Karen Montgomery
  • Illustrator: Kate Dullea
  • May 2021: First Edition
Revision History for the First Edition
  • 2020-04-29: First Release

See http://oreilly.com/catalog/errata.csp?isbn=9781492047384 for release details.

The OReilly logo is a registered trademark of OReilly Media, Inc. Mastering Shiny, the cover image, and related trade dress are trademarks of OReilly Media, Inc.

The views expressed in this work are those of the author, and do not represent the publishers views. While the publisher and the author have used good faith efforts to ensure that the information and instructions contained in this work are accurate, the publisher and the author disclaim all responsibility for errors or omissions, including without limitation responsibility for damages resulting from the use of or reliance on this work. Use of the information and instructions contained in this work is at your own risk. If any code samples or other technology this work contains or describes is subject to open source licenses or the intellectual property rights of others, it is your responsibility to ensure that your use thereof complies with such licenses and/or rights.

Mastering Shiny is available under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. The author maintains an online version at https://mastering-shiny.org.

978-1-492-04738-4

[LSI]

Preface
What Is Shiny?

If youve never used Shiny before, welcome! Shiny is an R package that allows you to easily create rich, interactive web apps. Shiny allows you to take your work in R and expose it via a web browser so that anyone can use it. Shiny makes you look awesome by making it easy to produce polished web apps with a minimum amount of pain.

In the past, creating web apps was hard for most R users because:

  • You need a deep knowledge of web technologies like HTML, CSS, and JavaScript.

  • Making complex interactive apps requires careful analysis of interaction flows to make sure that when an input changes, only the related outputs are updated.

Shiny makes it significantly easier for the R programmer to create web apps by:

  • Providing a carefully curated set of user interface (UI for short) functions that generate the HTML, CSS, and JavaScript needed for common tasks. This means that you dont need to know the details of HTML/CSS/JavaScript until you want to go beyond the basics that Shiny provides for you.

  • Introducing a new style of programming called reactive programming, which automatically tracks the dependencies of pieces of code. This means that whenever an input changes, Shiny can automatically figure out how to do the smallest amount of work to update all the related outputs.

People use Shiny to:

  • Create dashboards that track important high-level performance indicators while facilitating drill-down into metrics that need more investigation.

  • Replace hundreds of pages of PDFs with interactive apps that allow the user to jump to the exact slice of the results that they care about.

  • Communicate complex models to a nontechnical audience with informative visualizations and interactive sensitivity analysis.

  • Provide self-service data analysis for common workflows, replacing email requests with a Shiny app that allows people to upload their own data and perform standard analyses. You can make sophisticated R analyses available to users with no programming skills.

  • Create interactive demos for teaching statistics and data science concepts that allow learners to tweak inputs and observe the downstream effects of those changes in an analysis.

In short, Shiny gives you the ability to pass on some of your R superpowers to anyone who can use the web.

Who Should Read This Book?

This book is aimed at two main audiences:

  • R users who are interested in learning about Shiny in order to turn their analyses into interactive web apps. To get the most out of this book, you should be comfortable using R to do data analysis and should have written at least a few functions .

  • Existing Shiny users who want to improve their knowledge of the theory underlying Shiny in order to write higher-quality apps faster and more easily. You should find this book particularly helpful if your apps are starting to get bigger and youre starting to have problems managing the complexity.

What Will You Learn?

The book is divided into four parts:

  1. In , youll learn the basics of Shiny so you can get up and running as quickly as possible. Youll learn about the basics of app structure, useful UI components, and the foundations of reactive programming.

  2. builds on the basics to help you solve common problems, including giving feedback to the user, uploading and downloading data, generating UI with code, reducing code duplication, and using Shiny to program the tidyverse.

  3. In , youll go deep into the theory and practice of reactive programming, the programming paradigm that underlies Shiny. If youre an existing Shiny user, youll get the most value out of this chapter as it will give you a solid theoretical underpinning that will allow you to create new tools specifically tailored for your problems.

  4. Finally, in well finish up with a survey of useful techniques for making your Shiny apps work well in production. Youll learn how to decompose complex apps into functions and modules, how to use packages to organize your code, how to test your code to ensure its correct, and how to measure and improve performance.

What Wont You Learn?

The focus of this book is making effective Shiny apps and understanding the underlying theory of reactivity. Ill do my best to showcase best practices for data science, R programming, and software engineering, but youll need other references to master these important skills. If you enjoy my writing in this book, you might enjoy my other books on these topics: R for Data Science, Advanced R, and R Packages.

There are also a number of important topics specific to Shiny that I dont cover:

  • This book only covers the built-in user interface toolkit. This doesnt provide the sexiest possible design, but its simple to learn and gets you a long way. If you have additional needs (or just get bored with the defaults), there are a number of other packages that provide alternative frontends. See for more details.

  • Deployment of Shiny apps. Putting Shiny into production is outside the scope of this book because it hugely varies from company to company, and much of it is unrelated to R (the majority of challenges tend to be cultural or organizational, not technical). If youre new to Shiny in production, I recommend starting with Joe Chengs 2019 rstudio::conf keynote. That will give you the lay of the land, discussing broadly what putting Shiny into production entails and how to overcome some of the challenges that youre likely to face. Once youve done that, see the RStudio Connect website to learn about RStudios product for deploying apps within your company, and the Shiny website for other common deployment scenarios .

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Mastering Shiny: Build Interactive Apps, Reports, and Dashboards Powered by R»

Look at similar books to Mastering Shiny: Build Interactive Apps, Reports, and Dashboards Powered by R. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Mastering Shiny: Build Interactive Apps, Reports, and Dashboards Powered by R»

Discussion, reviews of the book Mastering Shiny: Build Interactive Apps, Reports, and Dashboards Powered by R and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.