I am
I am using selected = NULL in the selectInput function below to prevent the first item in the list to appear as default selection in the dropdown menu. I would like for this value to be blank instead, but it does not work.
Any ideas?
c("mpg" = "mpg",
"Cylinders" = "cyl",
"Displacement" = "disp",
"HorsePower" = "hp",
"Drat" = "drat",
"Weight" = "wt",
"Qsec" = "qsec",
"Vs" = "vs",
"Transmission" = "am",
"Gears" = "gear",
"Carb" = "carb"
), selected = NULL)