Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maelle/minipkg
Example of a package
https://github.com/maelle/minipkg
Last synced: 20 days ago
JSON representation
Example of a package
- Host: GitHub
- URL: https://github.com/maelle/minipkg
- Owner: maelle
- License: other
- Created: 2024-02-22T13:26:31.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-03-07T14:15:28.000Z (10 months ago)
- Last Synced: 2024-11-05T03:22:03.728Z (2 months ago)
- Language: R
- Homepage: https://maelle.github.io/minipkg/
- Size: 3.74 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# minipkg
The goal of minipkg is to exemplify package development.
## Installation
You can install the development version of minipkg from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("maelle/minipkg")
```## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(minipkg)
what_time()
```