Data Science with R — Datasets
====================================================
Book 5 of the Data Science Foundations Series

This folder contains the datasets used throughout this book, exported as
plain CSV files.

- orders.csv  — Chapter 16's final end-to-end capstone dataset (400 rows,
                referred to as "orders.csv" in the book's own R code).
                Deliberately messy on purpose, exactly as the chapter's
                own cleaning stage expects: customer_name contains
                inconsistent casing and stray whitespace (e.g.
                "  alice smith  ", "HENRY DAVIS") that the chapter's
                own str_trim() / str_to_title() (stringr) code cleans
                directly.

- iris.csv    — R's classic built-in iris dataset (150 rows), referenced
                directly with data(iris) in several earlier chapters.
                Column names use R's own dotted convention
                (Sepal.Length, Sepal.Width, Petal.Length, Petal.Width,
                Species) to match exactly what data(iris) provides in R.

More info and the latest version of this collection: www.waskeypress.com
