├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── render-quarto.yaml ├── .gitignore ├── .nojekyll ├── README.md ├── _quarto.yaml ├── authors.R ├── commits.rds ├── dplyr.png ├── ggplot2-logos.graffle ├── ggplot2-logos.png ├── github-commits.R ├── hex-office.jpg ├── hex-wall.png ├── index.qmd ├── nest-pack-chop.png ├── package_release.parquet ├── packages.R ├── packages.parquet ├── references.bib ├── releases.parquet ├── response-2025-10.md ├── reviews-2025-10.md └── the-tidyverse.png /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^\.github$ 2 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/render-quarto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/.github/workflows/render-quarto.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/README.md -------------------------------------------------------------------------------- /_quarto.yaml: -------------------------------------------------------------------------------- 1 | project: 2 | type: manuscript 3 | -------------------------------------------------------------------------------- /authors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/authors.R -------------------------------------------------------------------------------- /commits.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/commits.rds -------------------------------------------------------------------------------- /dplyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/dplyr.png -------------------------------------------------------------------------------- /ggplot2-logos.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/ggplot2-logos.graffle -------------------------------------------------------------------------------- /ggplot2-logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/ggplot2-logos.png -------------------------------------------------------------------------------- /github-commits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/github-commits.R -------------------------------------------------------------------------------- /hex-office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/hex-office.jpg -------------------------------------------------------------------------------- /hex-wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/hex-wall.png -------------------------------------------------------------------------------- /index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/index.qmd -------------------------------------------------------------------------------- /nest-pack-chop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/nest-pack-chop.png -------------------------------------------------------------------------------- /package_release.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/package_release.parquet -------------------------------------------------------------------------------- /packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/packages.R -------------------------------------------------------------------------------- /packages.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/packages.parquet -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/references.bib -------------------------------------------------------------------------------- /releases.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/releases.parquet -------------------------------------------------------------------------------- /response-2025-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/response-2025-10.md -------------------------------------------------------------------------------- /reviews-2025-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/reviews-2025-10.md -------------------------------------------------------------------------------- /the-tidyverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadley/25-tidyverse-history/HEAD/the-tidyverse.png --------------------------------------------------------------------------------