mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-09-12 18:09:39 +02:00
77 lines
3 KiB
Text
77 lines
3 KiB
Text
|
% Generated by roxygen2: do not edit by hand
|
||
|
% Please edit documentation in R/create-column-mod.R
|
||
|
\name{create-column}
|
||
|
\alias{create-column}
|
||
|
\alias{create_column_ui}
|
||
|
\alias{create_column_server}
|
||
|
\alias{list_allowed_operations}
|
||
|
\alias{modal_create_column}
|
||
|
\alias{winbox_create_column}
|
||
|
\title{Create new column}
|
||
|
\usage{
|
||
|
create_column_ui(id)
|
||
|
|
||
|
create_column_server(
|
||
|
id,
|
||
|
data_r = reactive(NULL),
|
||
|
allowed_operations = list_allowed_operations()
|
||
|
)
|
||
|
|
||
|
list_allowed_operations()
|
||
|
|
||
|
modal_create_column(
|
||
|
id,
|
||
|
title = i18n("Create a new column"),
|
||
|
easyClose = TRUE,
|
||
|
size = "l",
|
||
|
footer = NULL
|
||
|
)
|
||
|
|
||
|
winbox_create_column(
|
||
|
id,
|
||
|
title = i18n("Create a new column"),
|
||
|
options = shinyWidgets::wbOptions(),
|
||
|
controls = shinyWidgets::wbControls()
|
||
|
)
|
||
|
}
|
||
|
\arguments{
|
||
|
\item{id}{Module's ID.}
|
||
|
|
||
|
\item{data_r}{A \code{\link[shiny:reactive]{shiny::reactive()}} function returning a \code{data.frame}.}
|
||
|
|
||
|
\item{allowed_operations}{A \code{list} of allowed operations, see below for details.}
|
||
|
|
||
|
\item{title}{An optional title for the dialog.}
|
||
|
|
||
|
\item{easyClose}{If \code{TRUE}, the modal dialog can be dismissed by
|
||
|
clicking outside the dialog box, or be pressing the Escape key. If
|
||
|
\code{FALSE} (the default), the modal dialog can't be dismissed in those
|
||
|
ways; instead it must be dismissed by clicking on a \code{modalButton()}, or
|
||
|
from a call to \code{\link[shiny:removeModal]{removeModal()}} on the server.}
|
||
|
|
||
|
\item{size}{One of \code{"s"} for small, \code{"m"} (the default) for medium,
|
||
|
\code{"l"} for large, or \code{"xl"} for extra large. Note that \code{"xl"} only
|
||
|
works with Bootstrap 4 and above (to opt-in to Bootstrap 4+,
|
||
|
pass \code{\link[bslib:bs_theme]{bslib::bs_theme()}} to the \code{theme} argument of a page container
|
||
|
like \code{\link[shiny:fluidPage]{fluidPage()}}).}
|
||
|
|
||
|
\item{footer}{UI for footer. Use \code{NULL} for no footer.}
|
||
|
|
||
|
\item{options}{List of options, see \code{\link[shinyWidgets:wbOptions]{wbOptions()}}.}
|
||
|
|
||
|
\item{controls}{List of controls, see \code{\link[shinyWidgets:wbControls]{wbControls()}}.}
|
||
|
}
|
||
|
\value{
|
||
|
A \code{\link[shiny:reactive]{shiny::reactive()}} function returning the data.
|
||
|
}
|
||
|
\description{
|
||
|
This module allow to enter an expression to create a new column in a \code{data.frame}.
|
||
|
}
|
||
|
\note{
|
||
|
User can only use a subset of function: (, c, +, -, *, ^, \%\%, \%/\%, /, ==, >, <, !=, <=, >=, &, |, abs, sign, sqrt, ceiling, floor, trunc, cummax, cummin, cumprod, cumsum, exp, expm1, log, log10, log2, log1p, cos, cosh, sin, sinh, tan, tanh, acos, acosh, asin, asinh, atan, atanh, cospi, sinpi, tanpi, gamma, lgamma, digamma, trigamma, round, signif, max, min, range, prod, sum, any, all, pmin, pmax, mean, paste, paste0, substr, nchar, trimws, gsub, sub, grepl, ifelse, length, as.numeric, as.character, as.integer, as.Date, as.POSIXct, as.factor, factor.
|
||
|
You can add more operations using the \code{allowed_operations} argument, for example if you want to allow to use package lubridate, you can do:
|
||
|
|
||
|
\if{html}{\out{<div class="sourceCode r">}}\preformatted{c(list_allowed_operations(), getNamespaceExports("lubridate"))
|
||
|
}\if{html}{\out{</div>}}
|
||
|
}
|