Skip to content

Commit a1c21f6

Browse files
authored
Update 03_visuals-Answer_key.md
Fix typo (extra +)
1 parent 4557f2d commit a1c21f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

RShiny/lessons/03_visuals-Answer_key.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ server <- function(input, output) {
6767
# Scatter plot creation
6868
ggplot(mtcars) +
6969
geom_boxplot(aes(x = factor(cyl),
70-
y = .data[[input$y_axis_input]])) + +
70+
y = .data[[input$y_axis_input]])) +
7171
xlab("Cylinders")
7272
})
7373
}

0 commit comments

Comments
 (0)