This commit is contained in:
Andreas Gammelgaard Damsbo 2024-12-20 11:05:56 +01:00
parent 2ad36d6dde
commit 52d1791708
No known key found for this signature in database

View file

@ -2,6 +2,9 @@
<!-- badges: start --> <!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![rhub](https://github.com/agdamsbo/freesearcheR/actions/workflows/rhub.yaml/badge.svg)](https://github.com/agdamsbo/freesearcheR/actions/workflows/rhub.yaml)
[![freesearcheR](https://img.shields.io/badge/Shiny-shinyapps.io-blue?style=flat&labelColor=white&logo=RStudio&logoColor=blue)](https://agdamsbo.shinyapps.io/freesearcheR/)
<!-- badges: end --> <!-- badges: end -->
This package is the backbone of the free and open browser based data exploration and analysis tool with publication ready output. This package is the backbone of the free and open browser based data exploration and analysis tool with publication ready output.
@ -49,7 +52,10 @@ The ***freesearcheR***-tool can also be launched locally. Any data.frame availab
require("devtools") require("devtools")
devtools::install_github("agdamsbo/freesearcheR") devtools::install_github("agdamsbo/freesearcheR")
library(freesearcheR) library(freesearcheR)
# By loading mtcars to the environment, it will be available
# in the interface like any other data.frame
data(mtcars)
shiny_freesearcheR()
``` ```