Lets say I have data loaded from an spreadsheet:
JavaScript
x
13
13
1
df = pd.read_csv('KDRAT_2012.csv', index_col=0, encoding = "ISO-8859-1",)
2
3
0 1 2 3 4 5 6 7 8 9
4
5
0 -5.53 -6.69 -6.29 -5.76 -7.74 -7.66 -6.27 -4.13 -3.08 0.00
6
1 -5.52 -6.68 -6.28 -5.75 -7.73 -7.65 -6.26 -4.12 -3.07 0.01
7
2 -4.03 -5.19 -4.79 -4.26 -6.24 -6.16 -4.77 -2.63 -1.58 1.50
8
3 0.11 -1.05 -0.65 -0.12 -2.10 -2.02 -0.63 1.51 2.56 5.64
9
4 0.23 -0.93 -0.53 0.00 -1.98 -1.90 -0.51 1.63 2.68 5.76
10
5 -2.53 -3.69 -3.29 -2.76 -4.74 -4.66 -3.27 -1.13 -0.08 3.00
11
12
[6 rows x 10 columns]
13
and I have a the names in another dataframe for the rows and the columns for example
JavaScript
1
3
1
colnames = pd.DataFrame({'Names': ['A', 'B', 'C', 'D', 'E', 'F'],
2
'foo': [0, 1, 0, 0, 0, 0]})
3
Is there a way I can set the values in colnames['Names'].value
as the index for df? and is there a way to do this for column names?
Advertisement
Answer
How about df.index = colnames['Names']
for example:
JavaScript
1
20
20
1
In [77]: df = pd.DataFrame(np.arange(18).reshape(6,3))
2
3
In [78]: colnames = pd.DataFrame({'Names': ['A', 'B', 'C', 'D', 'E', 'F'],
4
'foo': [0, 1, 0, 0, 0, 0]})
5
6
In [79]: df.index = colnames['Names']
7
8
In [80]: df
9
Out[80]:
10
0 1 2
11
Names
12
A 0 1 2
13
B 3 4 5
14
C 6 7 8
15
D 9 10 11
16
E 12 13 14
17
F 15 16 17
18
19
[6 rows x 3 columns]
20