#!/usr/bin/env python # coding: utf-8 #
#

Did Home Prices in Hollister CA Rise in 2016?

#
# #
# #
# Mikaela Rojas | Rojas Realty #
# #
# #
# #
#

Hello!

#

I’m Mikaela Rojas!


#
#
# Thank you for choosing me as your South Bay Realtor! Let's take a
# a look at Hollister CA Home Prices & Home Values for the year 2016. #
# #
# #
# In[8]: import pandas as pd import matplotlib.pyplot as plt # only needed for advanced plotting plt.style.use('ggplot') get_ipython().run_line_magic('matplotlib', 'inline') # In[9]: # grab Zillow data # Hollister,CA,San Jose,San Benito|00800 df = pd.read_csv('http://www.quandl.com/api/v3/datasets/ZILL/C00800_A.csv') df.head(); # In[10]: # convert to date format df['Date'] = pd.to_datetime(df['Date']) # In[11]: # rename columns df.columns = ['Date','Price'] # In[12]: # set Date to be the index df = df.set_index('Date') # ## Prices have been steadily climbing since July of last year. # In[13]: df['2016'].sort_index().plot(figsize=(15,5)); #

Hollister CA Realtor: ROJAS REALTY

# #
#

the information came from quandl and Zillow

#
# In[14]: from IPython.display import HTML HTML('''
''')