Wie erstelle ich TextArea als Eingabe in einer Shiny-Webapp in R?

Ich versuche, eine einfache Webanwendung zu erstellen, bei der ich mehrzeilige Eingaben von Benutzern mithilfe des HTML-Textarea-Steuerelements berücksichtigen möchte. Gibt es eine sofort einsatzbereite Möglichkeit, ein solches Eingabesteuerelement in Shiny zu erstellen?

Die Hilfeseite von textInput zeigt nicht viele Optionen an

textInput {shiny}   R Documentation
Create a text input control

Description

Create an input control for entry of unstructured text values

Usage

  textInput(inputId, label, value = "")
Arguments

inputId 
Input variable to assign the control's value to

label   
Display label for the control

value   
Initial value

Value

A text input control that can be added to a UI definition.

Examples

textInput("caption", "Caption:", "Data Summary")

Antworten auf die Frage(6)

Ihre Antwort auf die Frage