mbir
mbir: Magnitude-Based Inferences - Published in JOSS (2019)
Science Score: 95.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
Links to: joss.theoj.org -
✓Committers with academic emails
1 of 3 committers (33.3%) from academic institutions -
○Institutional organization owner
-
✓JOSS paper metadata
Published in Journal of Open Source Software
Repository
Basic Info
- Host: GitHub
- Owner: kdpeterson51
- License: gpl-2.0
- Language: HTML
- Default Branch: master
- Size: 1.85 MB
Statistics
- Stars: 1
- Watchers: 0
- Forks: 2
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
mbir: Magnitude-Based Inferences
Kyle D Peterson and Aaron R Caldwell
Overview
Allows practitioners and researchers a wholesale approach for deriving magnitude-based inferences from raw data. A major goal of mbir is to programmatically detect appropriate statistical tests to run in lieu of relying on practitioners to determine correct stepwise procedures independently.
Installation
Assuming users have R downloaded and installed, mbir can be installed right from CRAN by typing:
install.packages("mbir")
This package depends on the packages graphics, stats, and utils, which are imported upon installation.
A brief walk through mbir
Below is an example of how a user would perform a t-test with the classic Sleep data set.
data('sleep')
mbir::smd_test(sleep$extra[sleep$group==1],sleep$extra[sleep$group==2],paired = F)
By default, smd_test function tested for normality and homogeneity prior to performing the respectgive t-test. The output first states the results of the preliminary assumption tests, followed by the t-test parameters, which are then used to calculate the appropriate effect size estimate (in this case Cohen's d). Lastly, smd_test prints the magnitude-based inference about the effect size estimate by providing the partitioned probabilities and associated qualitative label.
Below is an example of how a user would perform a correlation with the classic mtcars data set, which provide the same theme as above.
data('mtcars')
mbir::corr_test(mtcars$mpg,mtcars$qsec)
For a detailed exploration of mbir, please visit our vignette.
Feedback
Feedback from users is welcome, and would be sincerely appreciated, to help improve functionality of mbir where warranted. Please reach out to petersonkdon@gmail.com for support, reporting issues, or contributions. Thank you very much.
Owner
- Name: Kyle D Peterson
- Login: kdpeterson51
- Kind: user
- Repositories: 1
- Profile: https://github.com/kdpeterson51
JOSS Publication
mbir: Magnitude-Based Inferences
Authors
Tags
statisticsGitHub Events
Total
Last Year
Committers
Last synced: 7 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| kdpeterson51 | k****n@u****u | 189 |
| arcaldwell49 | a****9@g****m | 13 |
| Carla | i****g@g****m | 2 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 2
- Total pull requests: 3
- Average time to close issues: 4 months
- Average time to close pull requests: 3 days
- Total issue authors: 1
- Total pull request authors: 2
- Average comments per issue: 5.0
- Average comments per pull request: 0.33
- Merged pull requests: 3
- 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
- kellieotto (2)
Pull Request Authors
- arcaldwell49 (2)
- iriberri (1)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- effsize * imports
- graphics * imports
- psych * imports
- stats * imports
- utils * imports
- knitr * suggests
- rmarkdown * suggests
- testthat * suggests
