Skip to content

Commit 7589566

Browse files
committed
reduced number of examples for CRAN automatic check
1 parent a547713 commit 7589566

13 files changed

+41
-39
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: nullabor
2-
Version: 0.3.14
2+
Version: 0.3.15
33
Description: Tools for visual inference. Generate null data sets
44
and null plots using permutation and simulation. Calculate distance metrics
55
for a lineup, and examine the distributions of metrics.

NEWS.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# nullabor 0.3.15
2+
3+
* Reduced examples for lineup_residuals() and lineup_histogram() so passes CRAN automatic check
4+
15
# nullabor 0.3.14
26

37
* Fix to qqplot for standardised residuals

R/quick_plots.R

-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
#' x <- lm(tip ~ total_bill, data = tips)
6767
#' lineup_residuals(x, type = 1) # Residuals vs Fitted
6868
#' lineup_residuals(x, type = 2, method = "pboot") # Normal Q-Q plot
69-
#' lineup_residuals(x, type = 3) # Scale-Location
7069
#' lineup_residuals(x, type = 4) # Residuals vs Leverage
7170
#'
7271
#' # Style the plot using color settings and ggplot2 functions:
@@ -164,7 +163,6 @@ lineup_residuals <- function(model, type = 1, method = "rotate", color_points =
164163
#' @examples
165164
#' data(tips)
166165
#' lineup_histograms(tips, "total_bill", dist = "normal") # Normal distribution
167-
#' lineup_histograms(tips, "total_bill", dist = "gamma") # Gamma distribution
168166
#'
169167
#' # Some distributions require that the parameters be specified:
170168
#' lineup_histograms(tips, "size", dist = "binomial", params = list(size = 6, p = 0.3))

cran-comments.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
## Overview
22

3-
These are small changes that fix several bugs.
3+
These are small changes that fix several bugs.
4+
5+
Also fixed https://win-builder.r-project.org/incoming_pretest/nullabor_0.3.14_20250210_040443/Debian/00check.log where
6+
the package failed automatic checks on linux because lineup_histograms() and lineup_residuals() took 5.669s and 5.574s to
7+
complete on linux, by removing one example in each.
48

59
- Using devtools::check()
610

7-
── R CMD check results ───────────────────────────────── nullabor 0.3.14 ────
11+
── R CMD check results ───────────────────────────────── nullabor 0.3.15 ────
812
Duration: 2m 29s
913

1014
0 errors ✔ | 0 warnings ✔ | 0 notes ✔
1115

12-
- Using R CMD CHECK ../nullabor_0.3.14.tar.gz
16+
- Using R CMD CHECK ../nullabor_0.3.15.tar.gz
1317

1418
* DONE
1519

man/electoral.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/lineup_histograms.Rd

+2-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/lineup_qq.Rd

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/lineup_residuals.Rd

+11-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/null_dist.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/null_lm.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/null_permute.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/null_ts.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/tips.Rd

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)