8/17/2020

Developing data products presentation page -week3 assignment

Slide with bullets

Over view:

  • Web page created using R markdown that features a plot created with plotly
  • used school_earnings.csv for the plot
  • plotted the bubble chart (scatter plot) for the earnings

Slide with R Output

Libraries used

library(plotly)
## Loading required package: ggplot2
## 
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
## 
##     last_plot
## The following object is masked from 'package:stats':
## 
##     filter
## The following object is masked from 'package:graphics':
## 
##     layout
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
data <- read.csv("https://raw.githubusercontent.com/plotly/datasets/master/school_earnings.csv")

Slide with Plot