Skip to content

Commit d7a3269

Browse files
author
mef
committed
(math/R-quantreg) Updated 5.88 to 5.96
(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.
1 parent 208af25 commit d7a3269

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

math/R-quantreg/Makefile

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
# $NetBSD: Makefile,v 1.9 2022/04/02 09:04:22 wen Exp $
1+
# $NetBSD: Makefile,v 1.10 2023/08/11 06:23:48 mef Exp $
22

33
R_PKGNAME= quantreg
4-
R_PKGVER= 5.88
5-
CATEGORIES= math
4+
R_PKGVER= 5.96
65

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

13+
# Packages suggested but not available:
14+
# 'logspline', 'nor1mix', 'R.rsp', 'conquer'
15+
16+
TEST_DEPENDS+= R-Formula-[0-9]*:../../math/R-Formula
17+
TEST_DEPENDS+= R-interp-[0-9]*:../../graphics/R-interp
18+
TEST_DEPENDS+= R-rgl-[0-9]*:../../graphics/R-rgl
19+
TEST_DEPENDS+= R-zoo-[0-9]*:../../math/R-zoo
20+
1421
USE_LANGUAGES= c fortran
1522

1623
.include "../../math/R/Makefile.extension"

math/R-quantreg/distinfo

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
$NetBSD: distinfo,v 1.8 2022/04/02 09:04:22 wen Exp $
1+
$NetBSD: distinfo,v 1.9 2023/08/11 06:23:48 mef Exp $
22

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

0 commit comments

Comments
 (0)