Skip to content

Commit

Permalink
Add imputation function, example data and github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hanneoberman committed Dec 9, 2022
1 parent d9182ac commit 07f231c
Show file tree
Hide file tree
Showing 11 changed files with 924 additions and 4 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
^miceheckman\.Rproj$
^\.Rproj\.user$
^LICENSE\.md$
^\.github$
1 change: 1 addition & 0 deletions .github/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.html
49 changes: 49 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]

name: R-CMD-check

jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}

name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
fail-fast: false
matrix:
config:
- {os: macos-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v3

- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check

- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
21 changes: 18 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,11 +1,26 @@
Package: miceheckman
Title: Additional Imputation Methods for 'mice', According to the Heckman Model
Title: Additional Imputation Methods for 'mice', According to the Heckman
Model
Version: 0.0.0.9000
Authors@R:
person("Hanne", "Oberman", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-3276-2141"))
Description: Impute (clustered) data according to the Heckman selection model for MNAR data.
License: GPL (>= 3)
Description: Impute (clustered) data according to the Heckman selection
model for MNAR data.
License: GPL (>= 3) + file LICENSE
Depends:
R (>= 2.10)
Imports:
GJRM,
MASS,
Matrix,
mgcv,
mice,
mixmeta,
mvtnorm,
pbivnorm,
stats
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.1
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Generated by roxygen2: do not edit by hand

export(mice.impute.2l.heckman)
Loading

0 comments on commit 07f231c

Please sign in to comment.