Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Commit

Permalink
update app.R
Browse files Browse the repository at this point in the history
turned 1 back into a string in:
make_plot2 <- function(ageslider = "1"){
  • Loading branch information
jacobgerlofs authored Apr 7, 2020
1 parent f678f52 commit a4ba489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.R
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ make_plot <- function(yaxis = "supervisor_relationship"){
}

# plot 2
make_plot2 <- function(ageslider = 1){
make_plot2 <- function(ageslider = "1"){
sliderTibble <- tibble(label = levels(survey_data$age), value = c(1:length(levels(survey_data$age))))
slider_label <- sliderTibble$label[sliderTibble$value == ageslider]
p1 <- survey_data %>%
Expand Down

0 comments on commit a4ba489

Please sign in to comment.