16.4 Picker Control

히스토그램에 대상 변수를 선택할 수 있는 Picker Control 예제입니다.

## Picker Control
manipulate(
   hist(Cars93[, continuous_variable], 
           freq = FALSE, main = continuous_variable),
   
   continuous_variable = picker("MPG.highway", "Weight", "Price"))
## Error in manipulate(hist(Cars93[, continuous_variable], freq = FALSE, : The manipulate package must be run from within RStudio

산포도의 x축, 무게(Weight)과 y축, 고속도로연비(MPG.highway)은 정해져있고, 차종(Type)별로 산포도를 보고 싶을 때 차종(Type)을 왼쪽의 Picker Control 상자로 만들어서 바로 바로 차종별로 선택해 가면서 산포도를 보는 프로그램 예제입니다.

manipulate(
   plot(MPG.highway ~ Weight, data=Cars93[Cars93$Type == Type,]),
   
   Type = picker("Compact", "Large", "Midsize", "Small", "Sporty", "Van"))
## Error in manipulate(plot(MPG.highway ~ Weight, data = Cars93[Cars93$Type == : The manipulate package must be run from within RStudio