Created
June 1, 2018 03:59
-
-
Save avyfain/f863b3eaf1f66c0f998a5f172cbef473 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(XML) | |
library(ggplot2) | |
df <- readHTMLTable("http://projects.dailycal.org/paychecker")[[1]] | |
colnames(df)[4] <- "Salary" | |
df$Salary <- as.numeric(gsub('[$,]', '', df$Salary)) | |
p <- ggplot(df, aes(x=Department, y=Salary)) + coord_flip() | |
p + geom_boxplot(aes(color=Rank, | |
x=reorder(Department, Salary, FUN=max))) + | |
scale_y_continuous(labels = scales::dollar) + | |
labs(title="Salaries by Department", | |
subtitle="University of California System", | |
y="Annual Salary (2015)", | |
x="Department", | |
caption="Source: http://projects.dailycal.org/paychecker/\n by @avyfain, inspired by @johnjhorton") + | |
theme(plot.caption = element_text(size=7.5)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@avyfain Hey, glad it's actually useful for you. BTW, I tried reading the URL directly with
df = pd.read_html("http://projects.dailycal.org/paychecker")
but it would return a 403 error. I didn't dig into the why though; I just fell back to using requests instead.