FreesearchR/man/launch_FreesearchR.Rd

42 lines
1,019 B
Text
Raw Normal View History

2025-03-19 09:14:36 +01:00
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/launch_FreesearchR.R
\name{launch_FreesearchR}
\alias{launch_FreesearchR}
\title{Easily launch the FreesearchR app}
\usage{
2026-02-23 13:22:52 +01:00
launch_FreesearchR(
include_globalenv = TRUE,
2026-02-23 13:22:52 +01:00
data_limit_default = 1000,
data_limit_upper = 1e+05,
data_limit_lower = 1,
check_app_version = FALSE,
2026-02-23 13:22:52 +01:00
...
)
2025-03-19 09:14:36 +01:00
}
\arguments{
\item{include_globalenv}{flag to include global env (local data) as option
when loading data}
2026-02-23 13:22:52 +01:00
\item{data_limit_default}{default data set observations limit}
\item{data_limit_upper}{data set observations upper limit}
\item{data_limit_lower}{data set observations lower limit}
\item{check_app_version}{always attempt to check app version against latest
release on GitHub. Default is FALSE}
2025-03-19 09:14:36 +01:00
\item{...}{passed on to \code{shiny::runApp()}}
}
\value{
shiny app
}
\description{
All data.frames in the global environment will be accessible through the app.
}
\examples{
\dontrun{
data(mtcars)
2025-04-29 12:11:38 +02:00
launch_FreesearchR(launch.browser = TRUE)
2025-03-19 09:14:36 +01:00
}
}