What code should i use to get the output of a yearly visualization for a 12 months since the data has a 6 years all in all. I need only 1 year per visualization. What code should i use to have a plot for that

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

What code should i use to get the output of a yearly visualization for a 12 months since the data has a 6 years all in all. I need only 1 year per visualization. What code should i use to have a plot for that

import pandas as pd
import matplotlib.pyplot as plt
df - pd.read_csv( 'Port Area.csv', parse_dates-['Date'], index_col-'Date')
# Draw Plot
df.reset_index(inplace-True)
df [df['year'--2016)]
df['month ] - [d.strftine( "Xb') for d in df.date]
plot_df(df, x-df.index, y-df.Rainfall, title-'Port Area Clinatic Data')
KeyError
/usr/lacal/lib/Python3.7/dist-packages/pandas/core/indexes/base.py in get_loc(self, key, method, tolerance)
Traceback (nost recent call last)
2897
try:
return self._engine.get_loc(casted_key)
except KeyError as err:
> 2898
2899
pandas/_libs/index. pyx in pandas. libs.index.IndexEngine.get_loc()
pandas/_libs/index. pyx in pandas. libs.index.IndexEngine.get_loc()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable. PyobjectHashTable.get_iten()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable. PyobjectHashTable. get_iten()
KeyError: False
The above exception was the direct cause of the following exception:
KeyError
Traceback (nost recent call last)
2 frames
/usr/lacal/lib/Python3.7/dist-packages/pandas/core/indexes/base.py in get_loc(self, key, method, tolerance)
return self._engine. get_loc(casted_key)
except KeyError as err:
raise KeyError(key) fron err
2898
2899
> 2900
2901
2902
if tolerance is not None:
KevError: False
Transcribed Image Text:import pandas as pd import matplotlib.pyplot as plt df - pd.read_csv( 'Port Area.csv', parse_dates-['Date'], index_col-'Date') # Draw Plot df.reset_index(inplace-True) df [df['year'--2016)] df['month ] - [d.strftine( "Xb') for d in df.date] plot_df(df, x-df.index, y-df.Rainfall, title-'Port Area Clinatic Data') KeyError /usr/lacal/lib/Python3.7/dist-packages/pandas/core/indexes/base.py in get_loc(self, key, method, tolerance) Traceback (nost recent call last) 2897 try: return self._engine.get_loc(casted_key) except KeyError as err: > 2898 2899 pandas/_libs/index. pyx in pandas. libs.index.IndexEngine.get_loc() pandas/_libs/index. pyx in pandas. libs.index.IndexEngine.get_loc() pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable. PyobjectHashTable.get_iten() pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable. PyobjectHashTable. get_iten() KeyError: False The above exception was the direct cause of the following exception: KeyError Traceback (nost recent call last) 2 frames /usr/lacal/lib/Python3.7/dist-packages/pandas/core/indexes/base.py in get_loc(self, key, method, tolerance) return self._engine. get_loc(casted_key) except KeyError as err: raise KeyError(key) fron err 2898 2899 > 2900 2901 2902 if tolerance is not None: KevError: False
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Concept of Light
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education