default.param.set: default.param.set

Description Usage Arguments Details Value Author(s) Examples

View source: R/param.set.R

Description

Build a basic ParamSet for your handler

Usage

1

Arguments

handler

A function. (Typically one you are using as an AnalysisPage handler)

Details

Each argument to your handler is rendered into a simple AnalysisPageParam with the name of the argument and type "text". The idea is that you will then modify it as necessary to get more complicated widgets.

Value

AnalysisPageParamSet

Author(s)

Brad Friedman

Examples

1
2
3
  f <- function(A=1, B=2) {}
  # param set with 2 form elements rendered as text inputs; something like   A [__________]     B [__________]
  pset <- default.param.set(f)

AnalysisPageServer documentation built on April 28, 2020, 6:32 p.m.