Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified __pycache__/__init__.cpython-36.pyc
Binary file not shown.
Binary file modified q01_load_data/__pycache__/__init__.cpython-36.pyc
Binary file not shown.
Binary file modified q01_load_data/__pycache__/build.cpython-36.pyc
Binary file not shown.
4 changes: 4 additions & 0 deletions q01_load_data/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@

def q01_load_data(path):
"write your solution here"
df = pd.read_excel(path)
df['state'] = df['state'].str.lower()
df['total'] = df['Jan'] + df['Feb'] + df['Mar']
return df
Binary file modified q01_load_data/tests/__pycache__/__init__.cpython-36.pyc
Binary file not shown.
Binary file modified q01_load_data/tests/__pycache__/tests.cpython-36.pyc
Binary file not shown.
Binary file modified q02_append_row/__pycache__/__init__.cpython-36.pyc
Binary file not shown.
Binary file modified q02_append_row/__pycache__/build.cpython-36.pyc
Binary file not shown.
8 changes: 6 additions & 2 deletions q02_append_row/build.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# %load q02_append_row/build.py
import pandas as pd
import numpy as np
import sys, os
#sys.path.append(os.path.join(os.path.dirname(os.curdir)))
from greyatomlib.pandas_guided_project.q01_load_data.build import q01_load_data


def q02_append_row(path):
"write your solution here"

'write your solution here'
df = q01_load_data(path)
return df.append(df.sum(numeric_only=True), ignore_index=True)


#q02_append_row('data/excel-comp-data.xlsx')

Binary file modified q02_append_row/tests/__pycache__/__init__.cpython-36.pyc
Binary file not shown.
Binary file modified q02_append_row/tests/__pycache__/tests.cpython-36.pyc
Binary file not shown.
Binary file modified q03_scrape_clean/__pycache__/__init__.cpython-36.pyc
Binary file not shown.
Binary file modified q03_scrape_clean/__pycache__/build.cpython-36.pyc
Binary file not shown.
5 changes: 4 additions & 1 deletion q03_scrape_clean/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@

def q03_scrape_clean(url):
"write your solution here"

r = requests.get(url, auth=('user', 'pass'))
df = pd.DataFrame(pd.read_html(r.text)[0]).iloc[12:,:]
df.to_csv('scrapeddata.csv')
return df
Binary file modified q03_scrape_clean/tests/__pycache__/__init__.cpython-36.pyc
Binary file not shown.
Binary file modified q03_scrape_clean/tests/__pycache__/tests.cpython-36.pyc
Binary file not shown.
8 changes: 8 additions & 0 deletions q04_mapping/build.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# %load q04_mapping/build.py
import pandas as pd
import sys, os
import numpy as np
#sys.path.append(os.path.join(os.path.dirname(os.curdir)))
from greyatomlib.pandas_guided_project.q02_append_row.build import q02_append_row
from greyatomlib.pandas_guided_project.q03_scrape_clean.build import q03_scrape_clean
def q04_mapping(path1,path2):
"write your solution here"
df1 = q02_append_row(path1)
df2 = q03_scrape_clean(path2)
return df1,df2



path1 = 'data/excel-comp-data.xlsx'
path2 = 'data/scraped.csv'
q04_mapping(path1,path2)
78 changes: 78 additions & 0 deletions scrapeddata.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14
12,Alabama,State,US-AL,AL,01,AL,AL,Ala.,Ala.,,,,,,
13,Alaska,State,US-AK,AK,02,AK,AK,Alaska,Alaska,Alas.,,,,,
14,Arizona,State,US-AZ,AZ,04,AZ,AZ,Ariz.,Ariz.,Az.,,,,,
15,Arkansas,State,US-AR,AR,05,AR,AR,Ark.,Ark.,,,,,,
16,California,State,US-CA,CA,06,CA,CF,Calif.,Calif.,"Ca., Cal.",,,,,
17,Colorado,State,US-CO,CO,08,CO,CL,Colo.,Colo.,Col.,,,,,
18,Connecticut,State,US-CT,CT,09,CT,CT,Conn.,Conn.,Ct.,,,,,
19,Delaware,State,US-DE,DE,10,DE,DL,Del.,Del.,De.,,,,,
20,District of Columbia,Federal district,US-DC,DC,11,DC,DC,D.C.,D.C.,Wash. D.C.,,,,,
21,Florida,State,US-FL,FL,12,FL,FL,Fla.,Fla.,"Fl., Flor.",,,,,
22,Georgia,State,US-GA,GA,13,GA,GA,Ga.,Ga.,,,,,,
23,Hawaii,State,US-HI,HI,15,HI,HA,Hawaii,Hawaii,H.I.,,,,,
24,Idaho,State,US-ID,ID,16,ID,ID,Idaho,Idaho,"Id., Ida.",,,,,
25,Illinois,State,US-IL,IL,17,IL,IL,Ill.,Ill.,"Il., Ills., Ill's",,,,,
26,Indiana,State,US-IN,IN,18,IN,IN,Ind.,Ind.,In.,,,,,
27,Iowa,State,US-IA,IA,19,IA,IA,Iowa,Iowa,"Ia., Ioa.[1]",,,,,
28,Kansas,State,US-KS,KS,20,KS,KA,Kans.,Kan.,"Ks., Ka.",,,,,
29,Kentucky,State (Commonwealth),US-KY,KY,21,KY,KY,Ky.,Ky.,"Ken., Kent.",,,,,
30,Louisiana,State,US-LA,LA,22,LA,LA,La.,La.,,,,,,
31,Maine,State,US-ME,ME,23,ME,ME,Maine,Maine,Me.,,,,,
32,Maryland,State,US-MD,MD,24,MD,MD,Md.,Md.,,,,,,
33,Massachusetts,State (Commonwealth),US-MA,MA,25,MA,MS,Mass.,Mass.,,,,,,
34,Michigan,State,US-MI,MI,26,MI,MC,Mich.,Mich.,,,,,,
35,Minnesota,State,US-MN,MN,27,MN,MN,Minn.,Minn.,Mn.,,,,,
36,Mississippi,State,US-MS,MS,28,MS,MI,Miss.,Miss.,,,,,,
37,Missouri,State,US-MO,MO,29,MO,MO,Mo.,Mo.,,,,,,
38,Montana,State,US-MT,MT,30,MT,MT,Mont.,Mont.,,,,,,
39,Nebraska,State,US-NE,NE,31,NE,NB,Nebr.,Neb.,,,,,,
40,Nevada,State,US-NV,NV,32,NV,NV,Nev.,Nev.,Nv.,,,,,
41,New Hampshire,State,US-NH,NH,33,NH,NH,N.H.,N.H.,,,,,,
42,New Jersey,State,US-NJ,NJ,34,NJ,NJ,N.J.,N.J.,N.Jersey,,,,,
43,New Mexico,State,US-NM,NM,35,NM,NM,N. Mex.,N.M.,New M.,,,,,
44,New York,State,US-NY,NY,36,NY,NY,N.Y.,N.Y.,N. York,,,,,
45,North Carolina,State,US-NC,NC,37,NC,NC,N.C.,N.C.,N. Car.,,,,,
46,North Dakota,State,US-ND,ND,38,ND,ND,N. Dak.,N.D.,NoDak,,,,,
47,Ohio,State,US-OH,OH,39,OH,OH,Ohio,Ohio,"O., Oh.",,,,,
48,Oklahoma,State,US-OK,OK,40,OK,OK,Okla.,Okla.,Ok.,,,,,
49,Oregon,State,US-OR,OR,41,OR,OR,Oreg.,Ore.,Or.,,,,,
50,Pennsylvania,State (Commonwealth),US-PA,PA,42,PA,PA,Pa.,Pa.,"Penn., Penna.",,,,,
51,Rhode Island,State,US-RI,RI,44,RI,RI,R.I.,R.I.,"R.I. & P.P., R. Isl.",,,,,
52,South Carolina,State,US-SC,SC,45,SC,SC,S.C.,S.C.,S. Car.,,,,,
53,South Dakota,State,US-SD,SD,46,SD,SD,S. Dak.,S.D.,SoDak,,,,,
54,Tennessee,State,US-TN,TN,47,TN,TN,Tenn.,Tenn.,,,,,,
55,Texas,State,US-TX,TX,48,TX,TX,Tex.,Texas,Tx.,,,,,
56,Utah,State,US-UT,UT,49,UT,UT,Utah,Utah,Ut.,,,,,
57,Vermont,State,US-VT,VT,50,VT,VT,Vt.,Vt.,,,,,,
58,Virginia,State (Commonwealth),US-VA,VA,51,VA,VA,Va.,Va.,Virg.,,,,,
59,Washington,State,US-WA,WA,53,WA,WN,Wash.,Wash.,"Wa., Wn.[2]",,,,,
60,West Virginia,State,US-WV,WV,54,WV,WV,W. Va.,W.Va.,"W.V., W. Virg.",,,,,
61,Wisconsin,State,US-WI,WI,55,WI,WS,Wis.,Wis.,"Wi., Wisc.",,,,,
62,Wyoming,State,US-WY,WY,56,WY,WY,Wyo.,Wyo.,Wy.,,,,,
63,American Samoa,Insular area (Territory),AS ASM 016 US-AS,AS,60,AS,AS,A.S.,,,,,,,
64,Guam,Insular area (Territory),GU GUM 316 US-GU,GU,66,GU,GU,Guam,,,,,,,
65,Northern Mariana Islands,Insular area (Commonwealth),MP MNP 580 US-MP,MP,69,MP,CM,M.P.,,CNMI[3],,,,,
66,Puerto Rico,Insular area (Territory),PR PRI 630 US-PR,PR,72,PR,PR,P.R.,,,,,,,
67,U.S. Virgin Islands,Insular area (Territory),VI VIR 850 US-VI,VI,78,VI,VI,V.I.,,U.S.V.I.,,,,,
68,U.S. Minor Outlying Islands,Insular areas,UM UMI 581 US-UM,UM,74,,,,,,,,,,
69,Baker Island,island,UM-81,,81,,,,,XB[4],,,,,
70,Howland Island,island,UM-84,,84,,,,,XH[4],,,,,
71,Jarvis Island,island,UM-86,,86,,,,,XQ[4],,,,,
72,Johnston Atoll,atoll,UM-67,,67,,,,,XU[4],,,,,
73,Kingman Reef,atoll,UM-89,,89,,,,,XM[4],,,,,
74,Midway Islands,atoll,UM-71,,71,,,,,QM[4],,,,,
75,Navassa Island,island,UM-76,,76,,,,,XV[4],,,,,
76,Palmyra Atoll[5],atoll[5],UM-95,,95,,,,,XL[4],,,,,
77,Wake Island,atoll,UM-79,,79,,,,,QW[4],,,,,
78,Micronesia,Freely associated state,FM FSM 583,FM,64,FM,,,,,,,,,
79,Marshall Islands,Freely associated state,MH MHL 584,MH,68,MH,,,,,,,,,
80,Palau,Freely associated state,PW PLW 585,PW,70,PW,,,,,,,,,
81,U.S. Armed Forces – Americas[6],US military mail code,,,,AA,,,,,,,,,
82,U.S. Armed Forces – Europe[7],US military mail code,,,,AE,,,,,,,,,
83,U.S. Armed Forces – Pacific[8],US military mail code,,,,AP,,,,,,,,,
84,Northern Mariana Islands,Obsolete postal code[9],,,,CM,,,,,,,,,
85,Panama Canal Zone,Obsolete postal code,PZ PCZ 594,,,CZ,,,,,,,,,
86,Nebraska,Obsolete postal code[10],,,,NB,,,,,,,,,
87,Philippine Islands,Obsolete postal code,PH PHL 608[11],,,PI,,,,,,,,,
88,Trust Territory of the Pacific Islands,Obsolete postal code,PC PCI 582,,,TT,,,,,,,,,