About
My name is Colin. I currently work as a Data Scientist at Meta. I work on the team that builds systems that help Facebook and Instagram react to global civic crises.
If you want to get in touch with me, you can email me at colin dot r dot fraser at g mail dot com
, tweet at me, or, I don’t know, it’s pretty easy to get in touch with people on the internet these days.
About this Website
This website was created with Blogdown, following the generously detailed instructions from the blogdown book. This allows me to write posts using Rmarkdown, which lets me put code right into posts that renders right in the posts.
library(ggplot2)
library(magrittr)
diamonds %>%
ggplot(aes(y=price, x=carat, color=cut)) +
geom_point(alpha=0.3) +
theme_bw() +
ggtitle('See? I made this plot just for the About page')