Science Score: 49.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 5 DOI reference(s) in README
  • Academic publication links
  • Committers with academic emails
    1 of 4 committers (25.0%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (16.9%) to scientific vocabulary
Last synced: 7 months ago · JSON representation

Repository

Basic Info
  • Host: GitHub
  • Owner: KhanKawsar
  • License: other
  • Language: R
  • Default Branch: main
  • Size: 1020 KB
Statistics
  • Stars: 5
  • Watchers: 2
  • Forks: 2
  • Open Issues: 1
  • Releases: 2
Created almost 4 years ago · Last pushed 8 months ago
Metadata Files
Readme Changelog License

README.md

Durga: An R package for effect size estimation and visualisation

R-CMD-check Codecov test coverage CRAN status CRAN download count <!-- badges: end -->

Effect size estimation and plotting is a component of estimation statistics. Durga is an R package that aims to simplify sophisticated plotting of estimated differences in group means, which is an important part of communicating estimation statistics.

Citation

If you use Durga in your research, please cite (and read) the article:

Khan, M. K., & McLean, D. J. (2024). Durga: An R package for effect size estimation and visualisation. Journal of Evolutionary Biology. doi:10.1093/jeb/voae073

Installation

To install the released version:

> install.packages("Durga")

To install the development version:

> install.packages("devtools") # If not already installed
> devtools::install_github("KhanKawsar/EstimationPlot", build_vignettes = TRUE)

Refer to NEWS.md for a list of changes in each version, including changes in the current development version. You can read the news for an installed package by running:

> news(package = "Durga")

Usage

Read the paper Khan & McLean (2023) for a detailed description of the package. Once Durga is installed, you can read the vignette named Introduction to Durga for a shorter introduction to using Durga, complete with examples and code.

```R

Display the vignette in a browser

RShowDoc("Durga-intro", package = "Durga")

Display the vignette in the help window pane

vignette("Durga-intro", package = "Durga") ```

A minimal example using constructed data:

```R n <- 100 df <- data.frame(val = c(rnorm(n), rnorm(n, mean = 1)), group = c(rep("Control", n), rep("Group", n)))

d <- DurgaDiff(df, data.col = "val", group.col = "group") # or equivalently d <- DurgaDiff(val ~ group, df) DurgaPlot(d) ```

Development Environment

─ Packages ───────────────────────────────────────────────────────────────────────────────────────── package * version date (UTC) lib source cachem 1.1.0 2024-05-16 [1] CRAN (R 4.4.2) cli 3.6.3 2024-06-21 [1] CRAN (R 4.4.2) devtools 2.4.5 2022-10-11 [1] CRAN (R 4.4.2) digest 0.6.37 2024-08-19 [1] CRAN (R 4.4.2) ellipsis 0.3.2 2021-04-29 [1] CRAN (R 4.4.2) evaluate 1.0.3 2025-01-10 [1] CRAN (R 4.4.2) fastmap 1.2.0 2024-05-15 [1] CRAN (R 4.4.2) fs 1.6.5 2024-10-30 [1] CRAN (R 4.4.2) glue 1.8.0 2024-09-30 [1] CRAN (R 4.4.2) htmltools 0.5.8.1 2024-04-04 [1] CRAN (R 4.4.2) htmlwidgets 1.6.4 2023-12-06 [1] CRAN (R 4.4.2) httpuv 1.6.15 2024-03-26 [1] CRAN (R 4.4.2) knitr 1.49 2024-11-08 [1] CRAN (R 4.4.2) later 1.4.1 2024-11-27 [1] CRAN (R 4.4.2) lifecycle 1.0.4 2023-11-07 [1] CRAN (R 4.4.2) magrittr 2.0.3 2022-03-30 [1] CRAN (R 4.4.2) memoise 2.0.1 2021-11-26 [1] CRAN (R 4.4.2) mime 0.12 2021-09-28 [1] CRAN (R 4.4.0) miniUI 0.1.1.1 2018-05-18 [1] CRAN (R 4.4.2) pkgbuild 1.4.5 2024-10-28 [1] CRAN (R 4.4.2) pkgload 1.4.0 2024-06-28 [1] CRAN (R 4.4.2) profvis 0.4.0 2024-09-20 [1] CRAN (R 4.4.2) promises 1.3.2 2024-11-28 [1] CRAN (R 4.4.2) purrr 1.0.2 2023-08-10 [1] CRAN (R 4.4.2) R6 2.5.1 2021-08-19 [1] CRAN (R 4.4.2) Rcpp 1.0.13-1 2024-11-02 [1] CRAN (R 4.4.2) remotes 2.5.0 2024-03-17 [1] CRAN (R 4.4.2) rlang 1.1.4 2024-06-04 [1] CRAN (R 4.4.2) rmarkdown 2.29 2024-11-04 [1] CRAN (R 4.4.2) rstudioapi 0.17.1 2024-10-22 [1] CRAN (R 4.4.2) sessioninfo 1.2.2 2021-12-06 [1] CRAN (R 4.4.2) shiny 1.10.0 2024-12-14 [1] CRAN (R 4.4.2) urlchecker 1.0.1 2021-11-30 [1] CRAN (R 4.4.2) usethis 3.1.0 2024-11-26 [1] CRAN (R 4.4.2) vctrs 0.6.5 2023-12-01 [1] CRAN (R 4.4.2) xfun 0.50 2025-01-07 [1] CRAN (R 4.4.2) xtable 1.8-4 2019-04-21 [1] CRAN (R 4.4.2) yaml 2.3.10 2024-07-26 [1] CRAN (R 4.4.2)

Owner

  • Login: KhanKawsar
  • Kind: user
  • Location: Sydney

GitHub Events

Total
  • Issues event: 2
  • Issue comment event: 1
  • Push event: 12
  • Fork event: 1
Last Year
  • Issues event: 2
  • Issue comment event: 1
  • Push event: 12
  • Fork event: 1

Committers

Last synced: about 3 years ago

All Time
  • Total Commits: 205
  • Total Committers: 4
  • Avg Commits per committer: 51.25
  • Development Distribution Score (DDS): 0.112
Top Committers
Name Email Commits
Jim McLean j****n@o****u 182
KhanKawsar m****n@s****u 18
Jim McLean J****L@u****m 4
KhanKawsar 3****r@u****m 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 8 months ago

All Time
  • Total issues: 3
  • Total pull requests: 0
  • Average time to close issues: about 1 month
  • Average time to close pull requests: N/A
  • Total issue authors: 2
  • Total pull request authors: 0
  • Average comments per issue: 1.67
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 1
  • Pull requests: 0
  • Average time to close issues: 2 months
  • Average time to close pull requests: N/A
  • Issue authors: 1
  • Pull request authors: 0
  • Average comments per issue: 2.0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • alunats (2)
  • KundelD (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • cran 294 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 4
  • Total maintainers: 1
cran.r-project.org: Durga

Effect Size Estimation and Visualisation

  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 294 Last month
Rankings
Forks count: 21.9%
Stargazers count: 26.2%
Dependent packages count: 29.8%
Average: 31.4%
Dependent repos count: 35.5%
Downloads: 43.5%
Maintainers (1)
Last synced: 8 months ago

Dependencies

.github/workflows/R-CMD-check.yaml actions
  • actions/checkout v3 composite
  • r-lib/actions/check-r-package v2 composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/test-coverage.yaml actions
  • actions/checkout v3 composite
  • actions/upload-artifact v3 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
DESCRIPTION cran
  • R >= 2.10 depends
  • RColorBrewer * imports
  • boot * imports
  • methods * imports
  • vipor * imports
  • covr * suggests
  • data.table * suggests
  • knitr * suggests
  • rmarkdown * suggests
  • testthat >= 3.0.0 suggests
  • tibble * suggests