Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/craigjmcgowan/describedata
Miscellaneous R helper functions and approximate duplicate functions from other statistical software
https://github.com/craigjmcgowan/describedata
Last synced: 28 days ago
JSON representation
Miscellaneous R helper functions and approximate duplicate functions from other statistical software
- Host: GitHub
- URL: https://github.com/craigjmcgowan/describedata
- Owner: craigjmcgowan
- License: other
- Created: 2018-08-17T07:55:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-12T19:28:55.000Z (11 months ago)
- Last Synced: 2024-08-13T07:11:27.274Z (4 months ago)
- Language: R
- Size: 73.2 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE.md
Awesome Lists containing this project
- jimsghstars - craigjmcgowan/describedata - Miscellaneous R helper functions and approximate duplicate functions from other statistical software (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# describedataThis package contains functions written to replicate certain data analysis actions that I've found helpful in biostatistical and epidemiological research. It also contains R replicas of some functions from SAS and Stata to conduct similar analyses and display the results in a similar manner to the functions of those programs. Note that there has not been a concerted effort to fully replicate those all aspects of these functions - more functionality may be added on in the future but the current focus has been on aspects of the functions that have seemed most useful. If there is additional functionality you'd like to see included, please submit an issue on [GitHub](https://github.com/craigjmcgowan/describedata).
## Installation
You can install the released version of describedata from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("describedata")
```And the development version from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("craigjmcgowan/describedata")
```