Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jbkunst/kunstomverse
just for my laziness
https://github.com/jbkunst/kunstomverse
Last synced: 7 days ago
JSON representation
just for my laziness
- Host: GitHub
- URL: https://github.com/jbkunst/kunstomverse
- Owner: jbkunst
- License: other
- Created: 2020-04-01T16:41:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-26T19:45:35.000Z (over 2 years ago)
- Last Synced: 2024-10-11T19:13:49.370Z (about 1 month ago)
- Language: R
- Homepage: http://jkunst.com/kunstomverse/
- Size: 919 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
editor_options:
chunk_output_type: console
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# kunstomverse
[![R-CMD-check](https://github.com/jbkunst/kunstomverse/workflows/R-CMD-check/badge.svg)](https://github.com/jbkunst/kunstomverse/actions)
The goal of kunstomverse is to be a custom tidyverse package among other things:
- Load some missing packages that tidyverse don't load: scales, lubridate, broom.
- Install via suggests some packages
- Have some custom functions like `theme_knst`## Details
```{r, include=FALSE}
source("dev/01-pkgs.R")
```The packages to load:
```{r}
pkgs
```You can install extra packages using::
```{r}
# install.packages(kunstomverse:::EXTRAPACKAGES)
kunstomverse:::EXTRAPACKAGES
```## Installation
```{r, eval=FALSE}
# install.packages("remotes")
remotes::install_github("jbkunst/kunstomverse")
install.packages(kunstomverse:::EXTRAPACKAGES)
```