LocalCop
LocalCop: An R package for local likelihood inference for conditional copulas - Published in JOSS (2024)
Science Score: 93.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 1 DOI reference(s) in JOSS metadata -
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
✓JOSS paper metadata
Published in Journal of Open Source Software
Last synced: 6 months ago
·
JSON representation
Repository
Local Likelihood Inference for Conditional Copulas
Basic Info
- Host: GitHub
- Owner: mlysy
- License: gpl-3.0
- Language: R
- Default Branch: main
- Homepage: https://mlysy.github.io/LocalCop/
- Size: 1.36 MB
Statistics
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 1
- Releases: 0
Created almost 7 years ago
· Last pushed over 1 year ago
Metadata Files
Readme
Changelog
License
README.Rmd
---
output: github_document
---
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
library(desc)
#' Parse and format author list.
#'
#' @details Only those with roles "aut" and "cre" are included.
get_authors <- function() {
authors_full <- eval(parse(text = desc_get("Authors@R")))
is_aut <- sapply(authors_full,
function(x) any(x$role %in% c("aut", "cre")))
authors <- format(authors_full[is_aut],
include = c("given", "family"))
paste0(authors, collapse = ", ")
}
#' Format description.
#'
#' @details Converts TMB package names to hyperlink.
get_description <- function() {
desc_text <- desc_get("Description")
desc_text <- gsub("'TMB'",
replacement = "[**TMB**](https://github.com/kaskr/adcomp)",
x = desc_text)
desc_text
}
#' Create the CRAN installation instructions.
#'
#' @details If package is found on CRAN, provide [install.packages()] command and version number. Otherwise do nothing.
cran_install <- function() {
pkg_name <- desc_get("Package")
# check if cran version exists
cran_pkgs <- available.packages(filter = "CRAN")
if(pkg_name %in% cran_pkgs[,"Package"]) {
pkg_info <- cran_pkgs[pkg_name,]
cat(
paste0("To install the CRAN version (", pkg_info["Version"], "):"),
"",
"```r",
paste0('install.packages("', pkg_name,
'", INSTALL_opts = "--install-tests")'),
"```",
"",
sep = "\n"
)
}
}
#' Create the GitHub install command.
github_install <- function() {
pkg_name <- desc_get("Package")
cat(
"```r",
paste0('devtools::install_github("mlysy/', pkg_name,
'", INSTALL_opts = "--install-tests")'),
"```",
sep = "\n"
)
}
#' Create call to package vignette.
get_vignette <- function(name) {
if(missing(name)) name <- desc_get("Package")
paste0('`vignette("', name, '")`')
}
#' Create call to run testthat.
get_tests <- function() {
pkg_name <- desc_get("Package")
cat(
"```r",
paste0('testthat::test_package("', pkg_name,
'", reporter = "progress")'),
"```",
sep = "\n"
)
}
#' Create issue link.
get_issue <- function() {
pkg_name <- desc_get("Package")
paste0("[issue](https://github.com/mlysy/", pkg_name, "/issues)")
}
```
# `r desc_get("Package")`: `r desc_get("Title")`
*`r get_authors()`*
[](https://github.com/mlysy/LocalCop/actions/workflows/R-CMD-check.yaml)
---
### Description
`r get_description()`
### Installation
```{r cran-install, echo = FALSE, results = "asis"}
cran_install()
```
To install the latest development version: first install the [**devtools**](https://CRAN.R-project.org/package=devtools) package, then:
```{r github-install, echo = FALSE, results = "asis"}
github_install()
```
### Usage
Please see package vignette: `r get_vignette("LocalCop-vignette")`.
### Unit Tests
To verify that the package has been installed correctly, you can run its unit tests. First install the [**testthat**](https://CRAN.R-project.org/package=testthat) package, then:
```{r unit-tests, echo = FALSE, results = "asis"}
get_tests()
```
### Contributing
Contributions in the form of bug reports, fixes, extensions, improvements, etc. are most welcome. Please file an `r get_issue()` before submitting a PR.
Owner
- Login: mlysy
- Kind: user
- Company: University of Waterloo
- Website: https://mlysy.github.io/
- Repositories: 16
- Profile: https://github.com/mlysy
Martin Lysy
JOSS Publication
LocalCop: An R package for local likelihood inference for conditional copulas
Published
September 25, 2024
Volume 9, Issue 101, Page 6744
Authors
Alan Kuchinsky
University of Manitoba
University of Manitoba
Tags
copula local likelihood covariate effectGitHub Events
Total
- Pull request review event: 9
- Pull request review comment event: 14
- Pull request event: 2
Last Year
- Pull request review event: 9
- Pull request review comment event: 14
- Pull request event: 2
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 4
- Total pull requests: 17
- Average time to close issues: 21 days
- Average time to close pull requests: 7 days
- Total issue authors: 2
- Total pull request authors: 3
- Average comments per issue: 2.25
- Average comments per pull request: 0.06
- Merged pull requests: 15
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 2
- Pull requests: 5
- Average time to close issues: 29 days
- Average time to close pull requests: 15 days
- Issue authors: 1
- Pull request authors: 2
- Average comments per issue: 1.5
- Average comments per pull request: 0.0
- Merged pull requests: 3
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- AlexisDerumigny (2)
- mingzehuang (2)
Pull Request Authors
- mlysy (19)
- EFAcar (7)
- alank2004 (6)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 164 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 2
- Total maintainers: 1
cran.r-project.org: LocalCop
Local Likelihood Inference for Conditional Copula Models
- Homepage: https://github.com/mlysy/LocalCop
- Documentation: http://cran.r-project.org/web/packages/LocalCop/LocalCop.pdf
- License: GPL-3
-
Latest release: 0.0.2
published over 1 year ago
Rankings
Dependent packages count: 28.1%
Dependent repos count: 36.0%
Average: 49.7%
Downloads: 84.9%
Maintainers (1)
Last synced:
6 months ago
