Last active
December 17, 2015 03:39
-
-
Save piersharding/5544816 to your computer and use it in GitHub Desktop.
An example of how to use bigvis - https://github.com/hadley/bigvis
This file contains 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
# use bigvis to bin, condense, smooth and present data | |
library('bigvis') | |
library('ggplot2') | |
# subset the diamonds data | |
mydiamonds <- subset(diamonds, carat < 2.75) | |
# condense avg price based on bins of carat sizes of .1 carat intervals | |
myd <- condense(bin(mydiamonds$carat, .1), z=mydiamonds$price, summary="mean") | |
# smooth out the trend | |
myds <- smooth(myd, 50, var=".mean", type="robust") | |
# plot the orginal binned prices vs the smoothed trend line | |
ggplot() + geom_line(data=myd, aes(x=mydiamonds.carat, y=.mean, colour="Avg Price")) + | |
geom_line(data=myds, aes(x=mydiamonds.carat, y=.mean, colour="Smoothed")) + | |
ggtitle("Avg Diamond prices by binned Carat") + | |
ylab("Avg Price") + | |
xlab("Carats") + | |
scale_colour_manual("", breaks=c("Avg Price","Smoothed"), values=c("blue", "black")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment