-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpandas_test3.py
36 lines (29 loc) · 1.1 KB
/
pandas_test3.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
#! /usr/bin/env python3
# -*- coding:utf-8 -*-
###############################################################
# © kenwaldek MIT-license
#
# Title: pandas 3 Version: 1.0
# Date: 01-01-2017 Language: python3
# Description: concatination and appending
#
###############################################################
import pandas as pd
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])
# print(concat)
concat = pd.concat([df1, df2, df3])
print(concat)
df4 = df1.append(df2)
print(df4)