https://github.com/mjfrigaard/sapkgs
A Shiny App with various debugging techniques
https://github.com/mjfrigaard/sapkgs
Last synced: 4 months ago
JSON representation
A Shiny App with various debugging techniques
- Host: GitHub
- URL: https://github.com/mjfrigaard/sapkgs
- Owner: mjfrigaard
- License: other
- Created: 2024-01-21T18:15:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-03T22:13:31.000Z (about 1 year ago)
- Last Synced: 2024-08-13T07:11:08.961Z (8 months ago)
- Language: R
- Size: 910 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - mjfrigaard/sapkgs - A Shiny App with various debugging techniques (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# skimapp
The goal of `skimapp` is to select a dataset and present a `skim` of a variable.
## Installation
You can install `skimapp` like so:
1. In Terminal:
```bash
git clone https://github.com/mjfrigaard/sapkgs.git
git checkout main
cd sapkgs
open sapkgs.Rproj
```2. or use `remotes` (then switch branches to `main` in Terminal):
``` r
install.packages('remotes')
remotes::install_github('mjfrigaard/sapkgs')
``````bash
git checkout main
```