-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME.Rmd
47 lines (36 loc) · 1.7 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
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")
)
```
<img src="http://svmiller.com/images/stevemisc-hexlogo.png" alt="My stevemisc hexlogo" align="right" width="200" style="padding: 0 15px; float: right;"/>
`{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")
```