Created
June 11, 2018 16:15
-
-
Save Kiwibp/a064f31e9a4aa776718a84832606e01f to your computer and use it in GitHub Desktop.
Craiglist Webscraping Project
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
# vehicles are skewing boxplot too much; all rows at or above 1.8k appear to be motor vehicles. | |
motor_vehicles = postings.loc[postings.price >= 1800.0, :] | |
motor_vehicles.plot.bar('name', 'price', figsize=(9,9)) | |
plt.ylabel("Price") | |
plt.xlabel("Vehicle") | |
plt.show(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment