Science Score: 10.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
1 of 2 committers (50.0%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (11.0%) to scientific vocabulary
Repository
confinterpret R package
Basic Info
- Host: GitHub
- Owner: jimvine
- Language: R
- Default Branch: master
- Size: 185 KB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
confinterpret
<!-- badges: start -->
<!-- badges: end -->
An R package for interpreting confidence intervals.
The goal of confinterpret is to allow users to produce standardised descriptive interpretations from confidence intervals in R. The package supports researchers to focus more on generating estimates with associated ranges of uncertainty, rather than on single point-estimates, such as are common when conclusions are drawn from p-values.
The package includes (extensible) support for various test types, which are specified as sets of interpretations dependent on where the lower and upper confidence limits sit.
A collection of interpretation_set objects are provided in the package, to cover certain common situations where the confidence interval is of an effect size comparing two groups. Convenience / wrapper functions are provided for using each of these:
- Superiority tests:
interpret_superiority() - Non-inferiority tests:
interpret_noninferiority() - Equivalence tests:
interpret_equivalence()
Installation
confinterpret is on CRAN, so you can install it in the normal way:
R
install.packages("confinterpret")
You can also install the development version of confinterpret from github with:
```R
install.packages("devtools")
devtools::install_github("jimvine/confinterpret") ```
Example
This is a basic example which shows you how to solve a common problem:
```R
Set up a dummy confidence interval
ci_above <- matrix(c(0.15, 0.25), nrow = 1, dimnames = list("estimate", c("2.5 %","97.5 %")))
ciabovesup <- interpretsuperiority(ciabove)
Access the short-form interpretation:
ciabovesup$interpretation_short
Access the full interpretation:
ciabovesup$interpretation
Access the full interpretation, marked up with markdown:
ciabovesup$interpretation_md
Plot a chart of the interpretation (specify a nice colour-scheme first):
grDevices::palette(c("#FF671F99", "#F2A90099", "#0085CA99")) plot(ciabovesup) ```
Owner
- Name: Jim Vine
- Login: jimvine
- Kind: user
- Location: Essex, UK
- Company: University of Essex
- Repositories: 2
- Profile: https://github.com/jimvine
GitHub Events
Total
- Push event: 2
Last Year
- Push event: 2
Committers
Last synced: over 2 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| Jim Vine | c****e@j****k | 85 |
| Vine | j****1@e****k | 9 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 251 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 3
- Total maintainers: 1
cran.r-project.org: confinterpret
Descriptive Interpretations of Confidence Intervals
- Homepage: https://github.com/jimvine/confinterpret
- Documentation: http://cran.r-project.org/web/packages/confinterpret/confinterpret.pdf
- License: AGPL-3
-
Latest release: 1.0.0
published over 8 years ago
Rankings
Maintainers (1)
Dependencies
- RColorBrewer * suggests
- captioner * suggests
- grDevices * suggests
- graphics * suggests
- knitr * suggests
- rmarkdown * suggests
- testthat * suggests