Skip to content

Commit 7e80649

Browse files
committed
Fix URLs from http to https for CRAN resubmission
1 parent 4fa5bec commit 7e80649

File tree

6 files changed

+34
-9
lines changed

6 files changed

+34
-9
lines changed

CRAN-SUBMISSION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Version: 0.2.1
2-
Date: 2022-04-25 20:06:10 UTC
3-
SHA: 62b7f93e73a16b2de430d4482961bc77a85c5954
1+
Version: 0.2.2
2+
Date: 2022-06-21 03:44:32 UTC
3+
SHA: 4fa5bec60be02f73eb380c2e29ed0f927108dc70

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: CIPerm
22
Type: Package
33
Title: Computationally-Efficient Confidence Intervals for Mean Shift from Permutation Methods
4-
Version: 0.2.2
5-
Date: 2022-06-20
4+
Version: 0.2.3
5+
Date: 2022-06-21
66
Authors@R: c(
77
person("Emily", "Tupaj", role = "aut"),
88
person("Jerzy", "Wieczorek", email = "jawieczo@colby.edu", role = c("cre", "aut"),

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# CIPerm 0.2.3
2+
3+
* Fix typo in URLs.
4+
15
# CIPerm 0.2.2
26

37
* Update Nguyen (2009) links from URLs to DOIs.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
This R package implements computationally-efficient construction of confidence intervals from permutation tests or randomization tests for simple differences in means. In other words, if we set up a permutation or randomization test to evaluate $H_0: \mu_A - \mu_B = 0$,
99
then how can we use that same single set of permutations to cheaply construct a CI for the $(\mu_A - \mu_B)$ parameter?
1010

11-
The method is based on Minh D. Nguyen's 2009 MS thesis paper, "Nonparametric Inference using Randomization and Permutation Reference Distribution and their Monte-Carlo Approximation," http://doi.org/10.15760/etd.7798.
11+
The method is based on Minh D. Nguyen's 2009 MS thesis paper, "Nonparametric Inference using Randomization and Permutation Reference Distribution and their Monte-Carlo Approximation," https://doi.org/10.15760/etd.7798.
1212
See the `nguyen` vignette for a brief summary of the method and for our replication of Nguyen's results.
1313

1414
Note that our R function arguments and outputs are structured differently than the similarly-named R functions in Nguyen (2009), but the results are equivalent.
@@ -71,7 +71,7 @@ Nguyen, M.D. (2009).
7171
Reference Distribution and their Monte-Carlo Approximation"
7272
[unpublished MS thesis; Mara Tableman, advisor], Portland State University.
7373
*Dissertations and Theses*. Paper 5927.
74-
[DOI:10.15760/etd.7798](http://doi.org/10.15760/etd.7798).
74+
[DOI:10.15760/etd.7798](https://doi.org/10.15760/etd.7798).
7575

7676
Tupaj, E. and Wieczorek, J. (2022).
7777
"`CIPerm`: An R Package for Computationally Efficient Confidence Intervals from Permutation Test,"

cran-comments.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## Resubmission
2+
3+
This is a resubmission. In this version I have:
4+
5+
* Changed URLs from http to https so that they no longer redirect
6+
7+
18
## Test environments
29

310
* local Windows 10 install, R 4.2.0
@@ -9,8 +16,22 @@
916

1017
## R CMD check results
1118

12-
There were no ERRORs or WARNINGs or NOTEs.
19+
There were no ERRORs or WARNINGs.
20+
21+
There was one NOTE:
22+
23+
Found the following (possibly) invalid URLs:
24+
URL: https://doi.org/10.1214/088342304000000396
25+
From: inst/doc/nguyen.html
26+
README.md
27+
Status: 500
28+
Message: Internal Server Error
29+
URL: https://doi.org/10.2307/2532852
30+
From: inst/doc/nguyen.html
31+
Status: 403
32+
Message: Forbidden
1333

34+
These are valid URLs.
1435

1536
## Downstream dependencies
1637

vignettes/nguyen.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ We show that our package replicates the analyses in:
2121
Reference Distribution and their Monte-Carlo Approximation"
2222
[unpublished MS thesis; Mara Tableman, advisor], Portland State University.
2323
*Dissertations and Theses*. Paper 5927.
24-
[DOI:10.15760/etd.7798](http://doi.org/10.15760/etd.7798).
24+
[DOI:10.15760/etd.7798](https://doi.org/10.15760/etd.7798).
2525

2626
Note that our R function arguments and outputs are structured differently than the similarly-named R functions in Nguyen (2009), but the results are equivalent.
2727

0 commit comments

Comments
 (0)