Skip to content

Commit

Permalink
0.99.52.3
Browse files Browse the repository at this point in the history
  • Loading branch information
yourpresidentuniversal committed Dec 9, 2023
1 parent c362fc0 commit 6b3edb7
Show file tree
Hide file tree
Showing 10 changed files with 163 additions and 222 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: DescTools
Type: Package
Title: Tools for Descriptive Statistics
Version: 0.99.52.2
Version: 0.99.52.3
Date: 2023-12-10
Authors@R: c(
person("Andri", "Signorell", email = "andri@signorell.net", role = c("aut", "cre")),
Expand Down
4 changes: 2 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ DescTools 0.99.53 (2023-12-30)
------------------------------

NEW FUNCTIONS ADDED:
*
* New implementation of 2-sample HodgesLehmann estimator.

UPDATED FUNCTIONS:
*
* pckg.yaml has a dTri entry now.

BUGFIXES:
* HodgesLehman() mixed up the one sample and two sample case.
Expand Down
8 changes: 4 additions & 4 deletions R/RcppExports.R
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ check.gompertz <- function(shape, rate) {
.Call(`_DescTools_check_gompertz`, shape, rate)
}

hl2qest <- function(x, y) {
.Call(`_DescTools_hl2qest`, x, y)
}

hlqest <- function(x) {
.Call(`_DescTools_hlqest`, x)
}

hl2qest <- function(x, y) {
.Call(`_DescTools_hl2qest`, x, y)
}

Binary file modified src/DescTools.dll
Binary file not shown.
18 changes: 9 additions & 9 deletions src/RcppExports.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,26 +175,26 @@ BEGIN_RCPP
return rcpp_result_gen;
END_RCPP
}
// hl2qest
double hl2qest(NumericVector x, NumericVector y);
RcppExport SEXP _DescTools_hl2qest(SEXP xSEXP, SEXP ySEXP) {
// hlqest
double hlqest(NumericVector x);
RcppExport SEXP _DescTools_hlqest(SEXP xSEXP) {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< NumericVector >::type x(xSEXP);
Rcpp::traits::input_parameter< NumericVector >::type y(ySEXP);
rcpp_result_gen = Rcpp::wrap(hl2qest(x, y));
rcpp_result_gen = Rcpp::wrap(hlqest(x));
return rcpp_result_gen;
END_RCPP
}
// hlqest
double hlqest(NumericVector x);
RcppExport SEXP _DescTools_hlqest(SEXP xSEXP) {
// hl2qest
double hl2qest(NumericVector x, NumericVector y);
RcppExport SEXP _DescTools_hl2qest(SEXP xSEXP, SEXP ySEXP) {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< NumericVector >::type x(xSEXP);
rcpp_result_gen = Rcpp::wrap(hlqest(x));
Rcpp::traits::input_parameter< NumericVector >::type y(ySEXP);
rcpp_result_gen = Rcpp::wrap(hl2qest(x, y));
return rcpp_result_gen;
END_RCPP
}
Binary file modified src/RcppExports.o
Binary file not shown.
175 changes: 0 additions & 175 deletions src/hl2qest.cpp

This file was deleted.

Binary file removed src/hl2qest.o
Binary file not shown.
Loading

0 comments on commit 6b3edb7

Please sign in to comment.