Interactive Dashboards with Shiny
Basic Reactive concepts
This lesson is called Basic Reactive concepts, part of the Interactive Dashboards with Shiny course. This lesson is called Basic Reactive concepts, part of the Interactive Dashboards with Shiny course.
Transcript
Click on the transcript to go to that point in the video. Please note that transcripts are auto generated and may contain minor inaccuracies.
Your Turn
Working in reactivates/01_assignment/assignment_01.Rmd
, do the following:
Build up your dplyr statement by specifying your filter command below.
We want to filter the year_release
variable. Specifically, we want whether a film was released by less than or equal to 2001.
Here is the starter code you'll use:
```{r}
library(fivethirtyeight)
library(ggplot2)
library(dplyr)
data(biopics)
```
Think about it: where would our input value go in this calculation?
Have any questions? Put them below and we will help you out!
Course Content
26 Lessons
You need to be signed-in to comment on this post. Login.
Amy Yates • April 10, 2024
Not a question, but note that the assignment file provided already contains the solution, so there's no work to be done here.