25%
Mastering Health Data Science Using R

Mastering Health Data Science Using R

          
5
4
3
2
1

International Edition


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Quantity:
Add to Wishlist

About the Book

This book provides a practical, application-driven guide to using R for public health and health data science, accessible to both beginners and those with some coding experience. Each module starts with data as the driver of analysis before introducing and breaking down the programming concepts needed to tackle the analysis in a step-by-step manner. This book aims to equip readers by offering a practical and approachable programming guide tailored to those in health-related fields. Going beyond simple R examples, the programming principles and skills developed will give readers the ability to apply R skills to their own research needs. Practical case studies in public health are provided throughout to reinforce learning. Topics include data structures in R, exploratory analysis, distributions, hypothesis testing, regression analysis, and larger scale programming with functions and control flows. The presentation focuses on implementation with R and assumes readers have had an introduction to probability, statistical inference and regression analysis. Key features: · Includes practical case studies. · Explains how to write larger programmes. · Contains additional information on Quarto.

Table of Contents:
Preface Acknowledgments 1 Getting Started with R 1.1 Why R? 1.1.1 Installation of R and RStudio 1.2 The R Console 1.2.1 Basic Computations and Objects 1.2.2 Naming Conventions 1.3 RStudio and Quarto 1.3.1 Panes 1.3.2 Calling Functions 1.3.3 Working Directories and Paths 1.3.4 Installing and Loading Packages 1.4 RStudio Projects and RStudio Global Options 1.5 Tips and Reminders 2 Data Structures in R 2.1 Data Types 2.2 Vectors 2.2.1 Indexing a Vector 2.2.2 Modifying a Vector and Calculations 2.2.3 Practice Question 2.2.4 Common Vector Functions 2.3 Factors 2.4 Matrices 2.4.1 Indexing a Matrix 2.4.2 Modifying a Matrix 2.4.3 Practice Question 2.5 Data Frames 2.5.1 Indexing a Data Frame 2.5.2 Modifying a Data Frame 2.5.3 Practice Question 2.6 Lists 2.7 Exercises 3 Working with Data Files in R 3.1 Importing and Exporting Data 3.2 Summarizing and Creating Data Columns 3.2.1 Column Summaries 3.2.2 Practice Question 3.2.3 Other Summary Functions 3.2.4 Practice Question 3.2.5 Missing, Infinite, and NaN Values 3.2.6 Dates in R 3.3 Using Logic to Subset, Summarize, and Transform 3.3.1 Practice Question 3.3.2 Other Selection Functions 3.4 Exercises I Introduction to R 4 Intro to Exploratory Data Analysis 4.1 Univariate Distributions 4.1.1 Practice Question 4.2 Bivariate Distributions 4.2.1 Practice Question 4.3 Autogenerated Plots 4.4 Tables 4.5 Exercises 5 Data Transformations and Summaries 5.1 Tibbles and Data Frames 5.2 Subsetting Data 5.2.1 Practice Question 5.3 Updating Rows and Columns 5.3.1 Practice Question 5.4 Summarizing and Grouping 5.4.1 Practice Question 5.5 Exercises 6 Case Study: Cleaning Tuberculosis Screening Data 7 Merging and Reshaping Data 7.1 Tidy Data 7.2 Reshaping Data 7.2.1 Practice Question 7.3 Merging Data with Joins 7.3.1 Practice Question 7.4 Exercises 8 Visualization with ggplot2 8.1 Intro to ggplot 8.1.1 Practice Question 8.2 Adjusting the Axes and Aesthetics 8.3 Adding Groups 8.3.1 Practice Question 8.4 Extra Options 8.5 Exercises 9 Case Study: Exploring Early COVID-19 Data 9.1 Pre-processing 9.2 Mobility and Cases Over Time II Exploratory Analysis 10 Probability Distributions in R 10.1 Probability Distributions in R 10.1.1 Random Samples 10.1.2 Density Function 10.1.3 Cumulative Distribution 10.1.4 Quantile Distribution 10.1.5 Reference List for Probability Distributions 10.1.6 Practice Question 10.2 Empirical Distributions and Sampling Data 10.2.1 Practice Question 10.3 Exercises 11 Hypothesis Testing 11.1 Univariate Distributions and One-Sample Tests 11.1.1 Practice Question 11.2 Correlation and Covariance 11.3 Two-Sample Tests for Continuous Variables 11.3.1 Practice Question 11.3.2 Two-Sample Variance Tests 11.4 Two-Sample Tests for Categorical Variables 11.4.1 Practice Question 11.5 Adding Hypothesis Tests to Summary Tables 11.6 Exercises 12 Case Study: Analyzing Blood Lead Level and Hypertension III Distributions and Hypothesis Testing 13 Linear Regression 13.1 Simple Linear Regression 13.1.1 Practice Question 13.2 Multiple Linear Regression 13.3 Diagnostic Plots and Measures 13.3.1 Normality 13.3.2 Homoscedasticity, Linearity, and Collinearity 13.3.3 Practice Question 13.3.4 Leverage and Influence 13.4 Interactions and Transformations 13.4.1 Practice Question 13.5 Evaluation Metrics 13.6 Stepwise Selection 13.7 Exercises 14 Logistic Regression 14.1 Generalized Linear Models in R 14.1.1 Practice Question 14.2 Residuals, Discrimination, and Calibration 14.2.1 Receiver Operating Characteristic (ROC) Curve 14.2.2 Calibration Plot 14.2.3 Practice Question 14.3 Variable Selection and Likelihood Ratio Tests 14.4 Extending Beyond Binary Outcomes 14.5 Exercises 15 Model Selection 15.1 Regularized Regression 15.2 Elastic Net 15.3 Best Subset 15.4 Exercises 16 Case Study: Predicting Tuberculosis Risk 16.1 Model Selection 16.2 Evaluate Model on Validation Data IV Regression 17 Logic and Loops 17.1 Logic and Conditional Expressions 17.1.1 Practice Question 17.2 Loops 17.2.1 Practice Question 17.3 Avoiding Control Flows with Functions 17.4 Exercises 18 Functions 18.1 Components of a Function 18.1.1 Arguments 18.1.2 Practice Question 18.1.3 Return Values 18.1.4 Scope of Objects 18.1.5 Functions within Functions and Returning Functions 18.2 Documenting Functions 18.2.1 Practice Question 18.3 Debugging and Testing 18.3.1 Unit tests 18.3.2 Practice Question 18.4 Exercises 19 Case Study: Designing a Simulation Study 19.1 Outlining Our Approach 19.2 Coding Our Simulation Study 19.3 Results 20 Writing Efficient Code 20.1 Use Fast and Vectorized Functions 20.1.1 Practice Question 20.2 Avoid Copies and Duplicates objects!copies 20.2.1 Practice Question 20.3 Parallel Programming 20.4 Exercises V Writing Larger Programs 21 Expanding your R Skills 21.1 Reading Documentation for New Packages 21.2 Trying Simple Examples 21.3 Deciphering Error Messages and Warnings 21.3.1 Debugging Code 21.4 General Programming Tips 21.5 Exercises 22 Writing Reports in Quarto 22.1 Starting a Quarto file 22.1.1 Adding Code Chunks 22.1.2 Customizing Chunks 22.2 Formatting Text in Markdown 22.3 Formatting Figures and Tables 22.3.1 Using References 22.4 Adding in Equations 22.5 Exercises References


Best Sellers


Product Details
  • ISBN-13: 9781032729367
  • Publisher: Taylor & Francis Ltd
  • Publisher Imprint: Chapman & Hall/CRC
  • Height: 234 mm
  • No of Pages: 358
  • Width: 156 mm
  • ISBN-10: 1032729368
  • Publisher Date: 21 Jul 2025
  • Binding: Hardback
  • Language: English
  • Weight: 752 gr


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Mastering Health Data Science Using R
Taylor & Francis Ltd -
Mastering Health Data Science Using R
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Mastering Health Data Science Using R

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA