-
Notifications
You must be signed in to change notification settings - Fork 3
/
README.Rmd
52 lines (38 loc) · 1.68 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
---
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%"
)
```
# IDEMSinstatExtras
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
<!-- badges: end -->
This is an R package containing assorted functions which are created for [R-Instat](https://r-instat.org/), a GUI-free front-end being developed for R. These functions are designed to provide standalone capabilities for various tasks within the R programming environment.
## Installation
You can install the development version of instatExtras from [GitHub](https://github.com/) with:
``` r
# Install devtools package if not already installed
if (!requireNamespace("devtools", quietly = TRUE)) {
install.packages("devtools")
}
# Install instatExtras
devtools::install_github("IDEMSInternational/instatExtras")
```
## Usage
Once installed, you can load the package and start using its functions.
``` r
# Load the instatExtras package
library(instatExtras)
```
For detailed documentation on individual functions and their usage, please refer to the function documentation within R.
## Contribution
Contributions to `instatExtras` are welcome! If you find any issues or have suggestions for improvements, please open an issue on the GitHub repository.
## Acknowledgments
This package was developed as part of the [R-Instat](https://r-instat.org/) project. We acknowledge the contributions of all developers and contributors to the project.