Created
June 11, 2018 16:18
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
#Removing all locations with 2 or less items. | |
counts = non_mv.location.value_counts() | |
loc_gt2 = counts[counts > 2] | |
popular_locations = non_mv[non_mv.location.isin(loc_gt2.keys())] | |
plt.figure(figsize=(10,5)) | |
sns.violinplot(x="location", y="price", data=popular_locations, scale="width", inner="stick") | |
plt.show(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment