Skip to content

Commit

Permalink
(math/R-quantreg) Updated 5.88 to 5.96
Browse files Browse the repository at this point in the history
(From: inst/ChangeLog)
5.89

1.  removed the anonymous function syntax in 5.87 #2 since it did provoke
complaints from users.

2.  Fixed bootstrap methods for sparse X matrices for wild and pwy methods
report by Tom Parker.

a  mcmb is hopeless since it doesnt know about sparse matrices, will add
something to man page
b  pwy problem was annoying in the sense that rbind(X,0) doesnt work in
SparseM because 0 isnt sparse! Duh.
c  wild problem revealed an ecosystem of bugs, even in the non-sparse
case there was a bug:  hat(X) was called but should have specified hat(X,
intercept = FALSE),  when X is sparse I needed to cook up a special version of hat.

5.91

1.  CRAN is doing more severe checking about installed packages, so several
changes were made to make calls to suggested packages conditional on their
loading status.  This is supposed to be checkable by setting the environment
variable  _R_CHECK_DEPENDS_ONLY_="true" R CMD check ...    but I haven't yet
gotten this to work.

5.93

1.  The problem referenced in 5.91 above was mainly due to the fact that
packages were put in the system library not my personal library.  This was
fixed by reinstalling so that now:

Sys.getenv("R_LIBS_USER")
[1] "/Users/roger/Library/R/x86_64/4.2/library"

and now adding to .Renviron

_R_CHECK_DEPENDS_ONLY_=true

I believe will trigger the checking without the dependencies as required.

5.94

1.  Albrecht Gebhardt has made a translation of the Renka interp functionality
used for bivariate smoothing by rqss.  This effectively eliminates the need
for tripack in quantreg, and the code as been modified accordingly, thanks to
Albrecht for all his efforts on this.  This is all due to the unfortunate ACM
TOMS licencing policy that is incompatible with R.

2. Brian Ripley noted that the DOI for my CUP book was broken and I have urged
them to fix this.

3.  Minor bug fix in crq for case that the user specifies a single tau value.

5.95

1.  modified rqss to use rgl.triangles3d instead of rgl.triangles as suggested
by Duncan Murdock

2.  modified predict.rq and friends to adapt to na.action as suggested in
email of [email protected] on 5 April 2023.

5.96

1.  Changed gtimer to return 0.0 at suggestion of BDR to facilitate
compatibility with flang.
  • Loading branch information
mef committed Aug 11, 2023
1 parent 208af25 commit d7a3269
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
13 changes: 10 additions & 3 deletions math/R-quantreg/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.9 2022/04/02 09:04:22 wen Exp $
# $NetBSD: Makefile,v 1.10 2023/08/11 06:23:48 mef Exp $

R_PKGNAME= quantreg
R_PKGVER= 5.88
CATEGORIES= math
R_PKGVER= 5.96

MAINTAINER= [email protected]
COMMENT= Quantile regression
Expand All @@ -11,6 +10,14 @@ LICENSE= gnu-gpl-v2 OR gnu-gpl-v3
DEPENDS+= R-MatrixModels>=0:../../math/R-MatrixModels
DEPENDS+= R-SparseM>=1.77:../../math/R-SparseM

# Packages suggested but not available:
# 'logspline', 'nor1mix', 'R.rsp', 'conquer'

TEST_DEPENDS+= R-Formula-[0-9]*:../../math/R-Formula
TEST_DEPENDS+= R-interp-[0-9]*:../../graphics/R-interp
TEST_DEPENDS+= R-rgl-[0-9]*:../../graphics/R-rgl
TEST_DEPENDS+= R-zoo-[0-9]*:../../math/R-zoo

USE_LANGUAGES= c fortran

.include "../../math/R/Makefile.extension"
Expand Down
8 changes: 4 additions & 4 deletions math/R-quantreg/distinfo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.8 2022/04/02 09:04:22 wen Exp $
$NetBSD: distinfo,v 1.9 2023/08/11 06:23:48 mef Exp $

BLAKE2s (R/quantreg_5.88.tar.gz) = dd8739e0fc8d0d2d97036217adead214d5daf719bb2271a9b7caecac8c7ecece
SHA512 (R/quantreg_5.88.tar.gz) = dcfa3a1cb425b825ba1d1018c90bcb13dca854ddf04fbf02a319eeaf7119d6034e76ea7a7ed4d011448f7a573a82b45c55cc3f39bf9f67374879387e839a5a7f
Size (R/quantreg_5.88.tar.gz) = 1016964 bytes
BLAKE2s (R/quantreg_5.96.tar.gz) = 86e8319d2d5779110485e6f03b0726f6577247416194a93fbfcae6206e94ee72
SHA512 (R/quantreg_5.96.tar.gz) = de5e07d5a0addc621bac916594a451fa9231263a311159e5649fe4b251c2e19a96625ce98ebda7179f0f498cd32d09df8115b28eea54c92456add56ed85f30db
Size (R/quantreg_5.96.tar.gz) = 1026000 bytes

0 comments on commit d7a3269

Please sign in to comment.