Deploying to gh-pages from @ agdamsbo/FreesearchR@d9614eb37f 🚀

This commit is contained in:
agdamsbo 2025-12-12 17:13:36 +00:00
commit 92f211d592
160 changed files with 747 additions and 506 deletions

View file

@ -14,7 +14,7 @@ create_column_server(
allowed_operations = list_allowed_operations()
)
list_allowed_operations()
allowed_operations()
modal_create_column(
id,
@ -92,16 +92,17 @@ function returning the data.
## 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 `allowed_operations` argument, for
example if you want to allow to use package lubridate, you can do:
User can only use a subset of function: (, c, :, ~, +, -, \*, ^, %%,
%/%, /, ==, \>, \<, !=, \<=, \>=, &, \|, is.na, ifelse, any, all, 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, length,
pmin, pmax, mean, paste, paste0, substr, nchar, trimws, gsub, sub,
grepl, as.numeric, as.character, as.integer, as.Date, as.POSIXct,
as.factor, factor. You can add more operations using the
`allowed_operations` argument, for example if you want to allow to use
package lubridate, you can do:
c(list_allowed_operations(), getNamespaceExports("lubridate"))