-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
0.2.11
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,11 +17,13 @@ contact: | |
- email: [email protected] | ||
name: Research Institute for Nature and Forest | ||
title: 'multimput: Using Multiple Imputation to Address Missing Data' | ||
version: 0.2.10 | ||
abstract: 'Accompaning package for the paper: "Working with population totals in the | ||
presence of with missing data".' | ||
version: 0.2.11 | ||
abstract: 'Accompanying package for the paper: "Working with population totals in | ||
the presence of with missing data".' | ||
license: GPL-3.0 | ||
type: software | ||
doi: 10.5281/zenodo.598331 | ||
repository-code: https://github.com/inbo/multimput | ||
identifiers: [] | ||
identifiers: | ||
- type: url | ||
value: https://inbo.github.io/multimput/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Type: Package | ||
Package: multimput | ||
Title: Using Multiple Imputation to Address Missing Data | ||
Version: 0.2.10 | ||
Version: 0.2.11 | ||
Authors@R: c( | ||
person("Thierry", "Onkelinx", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0001-8804-4216")), | ||
|
@@ -11,11 +11,11 @@ Authors@R: c( | |
comment = c(ORCID = "0000-0002-6894-9402")), | ||
person("Research Institute for Nature and Forest", , , "[email protected]", role = c("cph", "fnd")) | ||
) | ||
Description: Accompaning package for the paper: "Working with population | ||
Description: Accompanying package for the paper: "Working with population | ||
totals in the presence of with missing data". | ||
License: GPL-3 | ||
URL: https://doi.org/10.5281/zenodo.598331, | ||
https://github.com/inbo/multimput | ||
https://github.com/inbo/multimput, https://inbo.github.io/multimput/ | ||
BugReports: https://github.com/inbo/multimput/issues | ||
Depends: | ||
R (>= 3.0.0) | ||
|
@@ -41,8 +41,9 @@ Suggests: | |
testthat | ||
VignetteBuilder: | ||
knitr | ||
Additional_repositories: https://inla.r-inla-download.org/R/testing | ||
Additional_repositories: https://inla.r-inla-download.org/R/stable | ||
Encoding: UTF-8 | ||
Language: en-GB | ||
LazyData: TRUE | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.1.2 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
#' inla | ||
#' | ||
#' the inla class is defined in the INLA package | ||
#' @name inla-class | ||
#' @seealso \link[INLA]{inla} | ||
#' @importFrom methods setOldClass | ||
#' @exportClass inla | ||
setOldClass("inla") | ||
|
||
#' The `maybeInla` class | ||
#' | ||
#' A superclass holding either `NULL` or an object of the `inla` class. | ||
#' @importFrom methods setClassUnion | ||
#' @exportClass maybeInla | ||
setClassUnion("maybeInla", "NULL") | ||
|
||
#' @importFrom methods getClassDef setIs | ||
.onLoad <- function(...) { | ||
if (requireNamespace("INLA", quietly = TRUE)) { | ||
setIs("inla", "maybeInla", classDef = getClassDef("inla", package = "INLA")) | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Codecov | ||
INLA |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.