title: “Interactive Plotly Presentation” author: “Your Name” date: “2026-06-10” output: ioslides_presentation —————————–
This presentation was created using R Markdown.
Date Created: 2026-06-10
plot_ly(
data = mtcars,
x = ~wt,
y = ~mpg,
type = "scatter",
mode = "markers",
color = ~factor(cyl)
)
## Warning: `arrange_()` was deprecated in dplyr 0.7.0.
## Please use `arrange()` instead.
## See vignette('programming') for more help
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
This interactive Plotly chart shows the relationship between vehicle weight and fuel efficiency.
Try hovering over the points to see the interactivity.