Skip to content

Commit 0959ff8

Browse files
committed
rebuild and recheck
1 parent 467a3a5 commit 0959ff8

File tree

78 files changed

+661
-403
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+661
-403
lines changed

DESCRIPTION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: seplyr
22
Type: Package
33
Title: Improved Standard Evaluation Interfaces for Common Data Manipulation Tasks
4-
Version: 0.8.8
5-
Date: 2020-05-23
4+
Version: 1.0.0
5+
Date: 2020-08-12
66
Authors@R: c(
77
person("John", "Mount", email = "[email protected]", role = c("aut", "cre")),
88
person(family = "Win-Vector LLC", role = c("cph"))
@@ -30,7 +30,7 @@ Imports:
3030
rlang,
3131
tidyr
3232
LazyData: true
33-
RoxygenNote: 7.1.0
33+
RoxygenNote: 7.1.1
3434
Suggests: knitr,
3535
rmarkdown,
3636
testthat

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11

2+
# seplyr 1.0.0 2020-08-12
3+
4+
* http: to https: where feasible.
25

36
# seplyr 0.8.8 2020-05-23
47

R/mutate_nse.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#'
99
#' Note: this method as the default setting \code{mutate_nse_split_terms = TRUE}, which is
1010
#' safer (avoiding certain known \code{dplyr}/\code{dblyr} issues)
11-
#' (please see the side-notes of \url{http://winvector.github.io/FluidData/partition_mutate.html} for some references).
11+
#' (please see the side-notes of \url{https://winvector.github.io/FluidData/partition_mutate.html} for some references).
1212
#'
1313
#' @seealso \code{\link{mutate_se}}, \code{\link[dplyr]{mutate}}, \code{\link[dplyr]{mutate_at}}, \code{\link[wrapr]{:=}}
1414
#'

R/mutate_se.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#'
99
#' Note: this method as the default setting \code{splitTerms = TRUE}, which is
1010
#' safer (avoiding certain known \code{dplyr}/\code{dblyr} issues)
11-
#' (please see the side-notes of \url{http://winvector.github.io/FluidData/partition_mutate.html} for some references).
11+
#' (please see the side-notes of \url{https://winvector.github.io/FluidData/partition_mutate.html} for some references).
1212
#'
1313
#' @seealso \code{\link{mutate_nse}}, \code{\link[dplyr]{mutate}}, \code{\link[dplyr]{mutate_at}}, \code{\link[wrapr]{:=}}
1414
#'

R/rename_se.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#'
88
#' Note: this method as the default setting \code{splitTerms = TRUE}, which is
99
#' safer (avoiding certain known \code{dplyr}/\code{dblyr} issues)
10-
#' (please see the side-notes of \url{http://winvector.github.io/FluidData/partition_mutate.html} for some references).
10+
#' (please see the side-notes of \url{https://winvector.github.io/FluidData/partition_mutate.html} for some references).
1111
#'
1212
#' @seealso \code{\link[dplyr]{rename}}, \code{\link[dplyr]{rename_at}}, \code{\link[wrapr]{:=}}
1313
#'

R/select_nse.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#' Select column that are exactly the names captured unevaluated from \code{...}.
44
#' This is to provide a simple interface that reliably uses non-standard captured names
55
#' (and not consequences of further evaluation). Please see
6-
#' \url{http://www.win-vector.com/blog/2018/09/a-subtle-flaw-in-some-popular-r-nse-interfaces/}
6+
#' \url{https://win-vector.com/2018/09/23/a-subtle-flaw-in-some-popular-r-nse-interfaces/}
77
#' for some discussion. Also accepts -name notation, but not integers or
88
#' functions of columns. Does not look at argument names (so can not be used to rename columns).
99
#'

R/stmtPlanner.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ find_symbols <- function(nexpr) {
120120
#' into ordered longest "no new value used blocks" by greedily scanning forward
121121
#' remaining expressions in order taking any that: have all their values available from earlier groups,
122122
#' do not use a value formed in the current group, and do not overwrite a value formed in the current group.
123-
#' For an example please see \url{http://winvector.github.io/FluidData/partition_mutate.html}.
123+
#' For an example please see \url{https://winvector.github.io/FluidData/partition_mutate.html}.
124124
#'
125125
#' @param exprs list of source-text of a sequence of mutate expressions.
126126
#' @return ordered list of mutate_se assignment blocks
@@ -194,7 +194,7 @@ mutate_seb <- function(d, blocks,
194194
#' into ordered longest "no new value used blocks" by greedily scanning forward
195195
#' remaining expressions in order taking any that: have all their values available from earlier groups,
196196
#' do not use a value formed in the current group, and do not overwrite a value formed in the current group.
197-
#' For an example please see \url{http://winvector.github.io/FluidData/partition_mutate.html}.
197+
#' For an example please see \url{https://winvector.github.io/FluidData/partition_mutate.html}.
198198
#'
199199
#' Note: unlike \code{\link{mutate_nse}} \code{partition_mutate_qt} does not perform
200200
#' substitutions.

README.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ Please see [`help("%.>%", package="wrapr")`](https://winvector.github.io/wrapr/r
6161
In addition to standard interface adapters `seplyr` supplies some non-trivial
6262
statement transforms:
6363

64-
* [`partition_mutate_se()`](https://winvector.github.io/seplyr/reference/partition_mutate_se.html): [vignette](https://winvector.github.io/seplyr/articles/MutatePartitioner.html), and [article](http://winvector.github.io/FluidData/partition_mutate.html).
65-
* [`if_else_device()`](https://winvector.github.io/seplyr/reference/if_else_device.html): [article](http://winvector.github.io/FluidData/partition_mutate_ex2.html).
64+
* [`partition_mutate_se()`](https://winvector.github.io/seplyr/reference/partition_mutate_se.html): [vignette](https://winvector.github.io/seplyr/articles/MutatePartitioner.html), and [article](https://winvector.github.io/FluidData/partition_mutate.html).
65+
* [`if_else_device()`](https://winvector.github.io/seplyr/reference/if_else_device.html): [article](https://winvector.github.io/FluidData/partition_mutate_ex2.html).
6666

6767

6868
## Note

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ library("seplyr")
3838
datasets::mtcars %.>%
3939
arrange_se(., orderTerms) %.>%
4040
head(.)
41-
# mpg cyl disp hp drat wt qsec vs am gear carb
42-
# 1 26.0 4 120.3 91 4.43 2.140 16.70 0 1 5 2
43-
# 2 30.4 4 95.1 113 3.77 1.513 16.90 1 1 5 2
44-
# 3 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
45-
# 4 24.4 4 146.7 62 3.69 3.190 20.00 1 0 4 2
46-
# 5 22.8 4 140.8 95 3.92 3.150 22.90 1 0 4 2
47-
# 6 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
41+
# mpg cyl disp hp drat wt qsec vs am gear carb
42+
# Porsche 914-2 26.0 4 120.3 91 4.43 2.140 16.70 0 1 5 2
43+
# Lotus Europa 30.4 4 95.1 113 3.77 1.513 16.90 1 1 5 2
44+
# Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
45+
# Merc 240D 24.4 4 146.7 62 3.69 3.190 20.00 1 0 4 2
46+
# Merc 230 22.8 4 140.8 95 3.92 3.150 22.90 1 0 4 2
47+
# Fiat 128 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
4848
```
4949

5050
The concept is: in writing re-usable code or scripts you pretend you do
@@ -65,15 +65,14 @@ package="wrapr")`](https://winvector.github.io/wrapr/reference/dot_arrow.html)
6565
for details on “dot pipe.”
6666

6767
In addition to standard interface adapters `seplyr` supplies some
68-
non-trivial statement
69-
transforms:
68+
non-trivial statement transforms:
7069

7170
- [`partition_mutate_se()`](https://winvector.github.io/seplyr/reference/partition_mutate_se.html):
7271
[vignette](https://winvector.github.io/seplyr/articles/MutatePartitioner.html),
7372
and
74-
[article](http://winvector.github.io/FluidData/partition_mutate.html).
73+
[article](https://winvector.github.io/FluidData/partition_mutate.html).
7574
- [`if_else_device()`](https://winvector.github.io/seplyr/reference/if_else_device.html):
76-
[article](http://winvector.github.io/FluidData/partition_mutate_ex2.html).
75+
[article](https://winvector.github.io/FluidData/partition_mutate_ex2.html).
7776

7877
## Note
7978

_pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
navbar:
33
right:
44
- text: "Sponsor: Win-Vector LLC"
5-
href: http://www.win-vector.com/
5+
href: https://win-vector.com/
66

77

0 commit comments

Comments
 (0)