Skip to content

Commit 9eafc5e

Browse files
committed
release 0.17.1 on CRAN
1 parent fd81e3a commit 9eafc5e

Some content is hidden

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

62 files changed

+588
-483
lines changed

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ Package: sjstats
22
Type: Package
33
Encoding: UTF-8
44
Title: Collection of Convenient Functions for Common Statistical Computations
5-
Version: 0.17.0.9000
6-
Date: 2018-09-25
5+
Version: 0.17.1
6+
Date: 2018-10-02
77
Authors@R: person("Daniel", "Lüdecke", role = c("aut", "cre"), email = "[email protected]", comment = c(ORCID = "0000-0002-8895-3206"))
88
Maintainer: Daniel Lüdecke <[email protected]>
99
Description: Collection of convenient functions for common statistical computations,

R/typical.R

+1-9
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
#' @param weights Name of variable in \code{x} that indicated the vector of
2121
#' weights that will be applied to weight all observations. Default is
2222
#' \code{NULL}, so no weights are used.
23-
#' @param weight.by Deprecated.
2423
#' @param ... Further arguments, passed down to \code{fun}.
2524
#'
2625
#' @inheritParams grpmean
@@ -66,14 +65,7 @@
6665
#'
6766
#'
6867
#' @export
69-
typical_value <- function(x, fun = "mean", weights = NULL, weight.by, ...) {
70-
71-
## TODO remove later
72-
73-
if (!missing(weight.by)) {
74-
# message("Argument `weight.by` is deprecated. Please use `weights`.")
75-
weights <- weight.by
76-
}
68+
typical_value <- function(x, fun = "mean", weights = NULL, ...) {
7769

7870
# check if we have named vectors and find the requested function
7971
# for special functions for factors, convert to numeric first

docs/articles/anova-statistics.html

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

docs/articles/bayesian-statistics.html

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

docs/articles/index.html

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

docs/articles/mixedmodels-statistics.html

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

docs/authors.html

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

docs/index.html

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

0 commit comments

Comments
 (0)