We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c8d610 commit 5d6519cCopy full SHA for 5d6519c
Assignment+4.py
@@ -64,7 +64,7 @@ def get_recession_start():
64
def get_recession_end():
65
'''Returns the year and quarter of the recession end time as a
66
string value in a format such as 2005q3'''
67
- #figured out that gdp[gdp['Quarter'] == '2008q2'].index.tolist() was [245], but for some reason it won't compile right.
+ #figured out that gdp[gdp['Quarter'] == '2008q2'].index.tolist() was [245]
68
gdp2 = gdp.loc[245:]
69
recession_end = []
70
for i in range(len(gdp2)- 2):
0 commit comments