Skip to content

Commit

Permalink
Merge pull request #198 from moderndive/dev-to-release-v0.6.1
Browse files Browse the repository at this point in the history
Prepare for 0.6.1 release
  • Loading branch information
ismayc authored Aug 28, 2019
2 parents 381ea1b + b768ccd commit a85a729
Show file tree
Hide file tree
Showing 1,895 changed files with 220,310 additions and 20 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ pandoc_version: 1.19.2.1
r_packages:
- devtools

r_github_packages:
- moderndive/moderndive
- tidymodels/infer
#r_github_packages:
# - moderndive/moderndive
# - tidymodels/infer

before_script:
- chmod +x ./_build.sh
Expand Down
5 changes: 3 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# ModernDive 0.6.0.9000
# ModernDive 0.6.1

* Changed chapter numbers. Chapter "1. Introduction" is now "Preface", thus all Chapter numbers decreased by one.
* Moved discussions on normal distribution (Ch on sampling) and log-transformations (Ch on tell your data story) to Appendix A "Statistical Background"
* Updated images used in book

* Did a full scan of the book for typos
* Created greyscale versions of many images for the CRC Press printed version


***
Expand Down
28 changes: 13 additions & 15 deletions index.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ favicon: "images/logos/favicons/favicon.ico"
```{r set-options, include=FALSE}
# Current version information: Date here should match the date in the YAML above.
# Remove .9000 tag and set date to release date when releasing
version <- "0.6.0.9000"
date <- format(Sys.time(), '%B %d, %Y')
version <- "0.6.1"
date <- "August 28, 2019"
# Latest release information:
latest_release_version <- "0.6.0"
latest_release_date <- "August 7, 2019"
latest_release_version <- "0.6.1"
latest_release_date <- "August 28, 2019"
# Set output options
if(knitr:::is_html_output())
Expand All @@ -56,8 +56,8 @@ needed_CRAN_pkgs <- c(
# Explicitly used packages:
"tidyverse", "rmarkdown", "knitr", "janitor", "skimr",
# "infer",
#"moderndive",
"infer",
"moderndive",
# Internally used packages:
"webshot", "mvtnorm", "remotes", "devtools", "dygraphs", "gridExtra",
Expand All @@ -76,17 +76,17 @@ if(!"patchwork" %in% installed.packages()){
remotes::install_github("thomasp85/patchwork")
}
if(!"moderndive" %in% installed.packages()){
#if(!"moderndive" %in% installed.packages()){
# To be included until new version with gg_parallel_slopes() is on CRAN
remotes::install_github("moderndive/moderndive")
}
# remotes::install_github("moderndive/moderndive")
#}
# Ensure Evgeni is listed as author of infer package
if(!"infer" %in% installed.packages()){
remotes::install_github("tidymodels/infer")
}
#if(!"infer" %in% installed.packages()){
# remotes::install_github("tidymodels/infer")
#}
needed_pkgs <- c(needed_CRAN_pkgs, "patchwork", "moderndive", "infer")
needed_pkgs <- unique(c(needed_CRAN_pkgs, "patchwork", "moderndive", "infer"))
# Check that phantomjs is installed to create screenshots of apps
if(is.null(webshot:::find_phantom()))
Expand All @@ -107,8 +107,6 @@ knitr::write_bib(
if(!dir.exists("rds"))
dir.create("rds")
# Clean out `docs` folder on new build
bookdown::clean_book(clean = TRUE)
# Create empty docs folder
if(!dir.exists("docs")) dir.create("docs")
Expand Down
2,020 changes: 2,020 additions & 0 deletions previous_versions/v0.6.0/10-hypothesis-testing.html

Large diffs are not rendered by default.

1,543 changes: 1,543 additions & 0 deletions previous_versions/v0.6.0/11-inference-for-regression.html

Large diffs are not rendered by default.

1,163 changes: 1,163 additions & 0 deletions previous_versions/v0.6.0/12-thinking-with-data.html

Large diffs are not rendered by default.

1,044 changes: 1,044 additions & 0 deletions previous_versions/v0.6.0/2-getting-started.html

Large diffs are not rendered by default.

1,910 changes: 1,910 additions & 0 deletions previous_versions/v0.6.0/3-viz.html

Large diffs are not rendered by default.

1,541 changes: 1,541 additions & 0 deletions previous_versions/v0.6.0/4-wrangling.html

Large diffs are not rendered by default.

1,263 changes: 1,263 additions & 0 deletions previous_versions/v0.6.0/5-tidy.html

Large diffs are not rendered by default.

2,614 changes: 2,614 additions & 0 deletions previous_versions/v0.6.0/6-regression.html

Large diffs are not rendered by default.

2,804 changes: 2,804 additions & 0 deletions previous_versions/v0.6.0/7-multiple-regression.html

Large diffs are not rendered by default.

2,125 changes: 2,125 additions & 0 deletions previous_versions/v0.6.0/8-sampling.html

Large diffs are not rendered by default.

2,473 changes: 2,473 additions & 0 deletions previous_versions/v0.6.0/9-confidence-intervals.html

Large diffs are not rendered by default.

715 changes: 715 additions & 0 deletions previous_versions/v0.6.0/A-appendixA.html

Large diffs are not rendered by default.

1,706 changes: 1,706 additions & 0 deletions previous_versions/v0.6.0/B-appendixB.html

Large diffs are not rendered by default.

715 changes: 715 additions & 0 deletions previous_versions/v0.6.0/C-appendixC.html

Large diffs are not rendered by default.

1,127 changes: 1,127 additions & 0 deletions previous_versions/v0.6.0/D-appendixD.html

Large diffs are not rendered by default.

Loading

0 comments on commit a85a729

Please sign in to comment.