Created
April 6, 2016 17:44
-
-
Save walkerke/65cf3f861afb0394eb15a884ea6c0dd5 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
summary(tad_merged$valsqft) | |
# Min. 1st Qu. Median Mean 3rd Qu. Max. | |
# 0.00 5.42 12.06 16.07 23.03 6345.00 | |
quantile(tad_merged$valsqft, probs = seq(0, 1, 1/7)) | |
# 0% 14.28571% 28.57143% 42.85714% 57.14286% 71.42857% 85.71429% 100% | |
# 0.00 2.97 6.24 9.83 15.05 21.55 27.91 6344.93 | |
ggplot(tad_merged@data, aes(x = valsqft)) + | |
geom_density() + | |
scale_x_log10(labels = comma) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment