-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconcatappend.py
42 lines (31 loc) · 1.06 KB
/
concatappend.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import pandas as pd
#import matplotlib.pyplot as plt
#import numpy as np
#import quandl
#from matplotlib import style
#style.use('ggplot')
api_key = ''
#df = quandl.get('FMAC/HPI_AK', authtoken = api_key)
#print df.head()
df1 = pd.DataFrame({'HPI':[80,85,88,85],
'Int_rate':[2, 3, 2, 2],
'US_GDP_Thousands':[50, 55, 65, 55]},
index = [2001, 2002, 2003, 2004])
df2 = pd.DataFrame({'HPI':[80,85,88,85],
'Int_rate':[2, 3, 2, 2],
'US_GDP_Thousands':[50, 55, 65, 55]},
index = [2005, 2006, 2007, 2008])
df3 = pd.DataFrame({'HPI':[80,85,88,85],
'Int_rate':[2, 3, 2, 2],
'Low_tier_HPI':[50, 52, 50, 53]},
index = [2001, 2002, 2003, 2004])
concat = pd.concat([df1,df2])
concat = pd.concat([df1, df2, df3])
print concat
df4 = df1.append(df2)
print df4
df4 = df1.append(df3)
print df4
s = pd.Series([80,2,50], index=['HPI','Int_rate','US_GDP_Thousands'])
df4 = df1.append(s, ignore_index=True)
print df4