Skip to content

Commit da24fa4

Browse files
v0.3.1
## New features - Added `check_cmat` and `coef_simu` to the list of exported functions as they can be useful for specific use cases. - Added full documentation. ## Bug fixes - In `check_cmat`, removed the call to `limSolve::nnls()` to be replaced by `coneproj::coneB` (also a NNLS solver) to reduce the number of dependencies. - In `coneproj.fit`, list of active constraints is now returned by the face of the constraint cone.
1 parent dab1b38 commit da24fa4

26 files changed

+663
-737
lines changed

.Rbuildignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
^cirls\.Rproj$
22
^\.Rproj\.user$
33
^LICENSE\.md$
4+
^\.github$
5+
^cran-comments\.md$
6+
^CRAN-SUBMISSION$

.github/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.html

.github/workflows/R-CMD-check.yaml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2+
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3+
on:
4+
push:
5+
branches: [main, master]
6+
pull_request:
7+
branches: [main, master]
8+
9+
name: R-CMD-check.yaml
10+
11+
permissions: read-all
12+
13+
jobs:
14+
R-CMD-check:
15+
runs-on: ${{ matrix.config.os }}
16+
17+
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
18+
19+
strategy:
20+
fail-fast: false
21+
matrix:
22+
config:
23+
- {os: macos-latest, r: 'release'}
24+
- {os: windows-latest, r: 'release'}
25+
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
26+
- {os: ubuntu-latest, r: 'release'}
27+
- {os: ubuntu-latest, r: 'oldrel-1'}
28+
29+
env:
30+
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
31+
R_KEEP_PKG_SOURCE: yes
32+
33+
steps:
34+
- uses: actions/checkout@v4
35+
36+
- uses: r-lib/actions/setup-pandoc@v2
37+
38+
- uses: r-lib/actions/setup-r@v2
39+
with:
40+
r-version: ${{ matrix.config.r }}
41+
http-user-agent: ${{ matrix.config.http-user-agent }}
42+
use-public-rspm: true
43+
44+
- uses: r-lib/actions/setup-r-dependencies@v2
45+
with:
46+
extra-packages: any::rcmdcheck
47+
needs: check
48+
49+
- uses: r-lib/actions/check-r-package@v2
50+
with:
51+
upload-snapshots: true
52+
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'

CRAN-SUBMISSION

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Version: 0.3.1
2+
Date: 2024-09-09 13:16:05 UTC
3+
SHA: dab1b38b00d2bb6da1f1854fbef2e139d7003c11

DESCRIPTION

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Package: cirls
2-
Title: Constrained iteratively reweighted least squares
3-
Version: 0.2.1
2+
Title: Constrained Iteratively Reweighted Least Squares
3+
Version: 0.3.1
44
Authors@R: c(
55
person(given = "Pierre",
66
family = "Masselot",
7-
role = c("aut", "cre"),
7+
role = c("aut", "cre", "cph"),
88
email = "pierre.masselot@lshtm.ac.uk",
99
comment = c(ORCID = "0000-0002-7326-1290")),
1010
person(given = "Antonio",
@@ -13,18 +13,19 @@ Authors@R: c(
1313
email = "antonio.gasparrini@lshtm.ac.uk",
1414
comment = c(ORCID = "0000-0002-2271-3568"))
1515
)
16-
Description: Provides a method to fit generalized additive models with coefficients submitted to linear constraints. The provided method can be used within the base `glm` function to take advantage of its full machinery.
16+
Description: Routines to fit generalized linear models with constrained coefficients, along with inference on the coefficients. Designed to be used in conjunction with the base glm() function.
1717
License: GPL (>= 3)
1818
Encoding: UTF-8
1919
LazyData: true
2020
Roxygen: list(markdown = TRUE, old_usage = TRUE)
2121
RoxygenNote: 7.3.1
2222
Imports:
23-
quadprog,
23+
quadprog,
2424
osqp,
2525
coneproj,
2626
TruncatedNormal,
27-
stats
27+
stats
2828
Suggests:
2929
testthat (>= 3.0.0)
3030
Config/testthat/edition: 3
31+
URL: https://github.com/PierreMasselot/cirls

0 commit comments

Comments
 (0)