Restrict the number of observations to a valid, positive number.

This commit is contained in:
trestletech
2013-07-03 23:06:42 -05:00
parent 64a62d7aed
commit 547999bae0

View File

@@ -10,7 +10,7 @@ shinyUI(pageWithSidebar(
sidebarPanel(
sliderInput("obs",
"Number of observations:",
min = 0,
min = 1,
max = 1000,
value = 500)
),