-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
69 lines (48 loc) · 2.77 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# Dmisc: Daniel miscellaneous functions <img src="man/figures/logo.png" align="right" height="138" alt="" />
<!-- badges: start -->
[](https://www.repostatus.org/#wip)
[](https://www.tidyverse.org/lifecycle/#experimental)
[](https://github.com/drdsdaniel/Dmisc/actions)
[](https://codecov.io/gh/drdsdaniel/Dmisc?branch=main)
[](https://CRAN.R-project.org/package=Dmisc)

<!-- badges: end -->
The Dmisc package provides a collection of versatile R functions developed by Daniel E. de la Rosa. These are general-purpose tools, not tied to any specific domain, aiming to aid a wide range of tasks in data analysis and visualization.
## Code Reusability
A primary motivation behind the development of Dmisc is to facilitate code reusability. Daniel created these functions to avoid code repetition in his own projects. However, if an equivalent function is found in another package with good support, the corresponding function in Dmisc may become deprecated.
## Installation
Not yet in [CRAN](https://CRAN.R-project.org)
<!-- You can install the released version of Dmisc from [CRAN](https://CRAN.R-project.org) with: -->
<!-- ``` r -->
<!-- install.packages("Dmisc") -->
<!-- ``` -->
You can install the development version from [GitHub](https://github.com/) with:
``` r
tryCatch(
library(remotes),
error = function(e){
install.packages('remotes')
}
)
remotes::install_github("drdsdaniel/Dmisc")
```
## Roadmap
- [ ] Add weight support to the `cut3` function.
## Functions
Browse the package site: [Dmisc](https://drdsdaniel.github.io/Dmisc/reference/index.html)
## Contributing
Have a feedback or want to contribute?
Please take a look at the [contributing guidelines](https://drdsdaniel.github.io/Dmisc/CONTRIBUTING.html) before filing an issue or pull request.
Please note that the `Dmisc` project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.