Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/svmiller/stevemisc
Steve's Miscellaneous Functions
https://github.com/svmiller/stevemisc
dplyr mixed-effects-models multivariate-normal-distribution r tidyverse
Last synced: about 1 month ago
JSON representation
Steve's Miscellaneous Functions
- Host: GitHub
- URL: https://github.com/svmiller/stevemisc
- Owner: svmiller
- Created: 2017-06-21T17:18:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-22T14:31:38.000Z (3 months ago)
- Last Synced: 2024-09-30T04:04:54.083Z (about 2 months ago)
- Topics: dplyr, mixed-effects-models, multivariate-normal-distribution, r, tidyverse
- Language: R
- Homepage: http://svmiller.com/stevemisc
- Size: 16.6 MB
- Stars: 10
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
Awesome Lists containing this project
README
---
output: github_document
---```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "80%",
fig.width = 9,
fig.align = "center"
)
```# Steve's Miscellaneous Functions
```{r echo=FALSE, results="hide", message=FALSE}
library("badger")
``````{r, echo = FALSE, results='asis'}
cat(
badge_cran_release("stevemisc", "green"),
badge_cran_download("stevemisc", "grand-total", "green"),
badge_cran_download("stevemisc", "last-month", "green"),
badge_cran_download("stevemisc", "last-week", "green")
)
````{stevemisc}` is an R package that includes various functions and tools that I have written over the years to assist me in my research, teaching, and public presentations (i.e. stuff I put on my blog). I offer it here for a public release because 1) I am vain and think I want an entire, eponymous ecosystem in the R programming language (i.e. the "steveverse") and 2) I think there are tools here that are broadly useful for users that I'm trying to bundle with other things that I offer (prominently [`{steveproj}`](https://github.com/svmiller/steveproj)). Namely, `{stevemisc}` offers tools to assist in data organization, data presentation, data recoding, and data simulation.
## Installation
You can install this on CRAN.
```r
install.packages("stevemisc")
```You can install the development version of `{stevemisc}` from Github via the `{devtools}` package. I suppose using the `{remotes}` package would work as well.
```r
devtools::install_github("svmiller/stevemisc")
```