Shinyサンプルアプリケーション「01_hello」の説明

01_helloは、入力用スライダーと出力用のプロットがあり、server.Rで入力された値をプロットに変換するプログラムとなっています。 「01_hello」の実行 library(shiny) runExample("01_hello") server.R library(shiny) # ヒストグラムを描くためのサーバ側を定義 function(input, output) { # ヒストグラムを描く式は、以…