I have created an empty metrics in python say
metric = np.empty([1,6])
Now, I am inserting some values to its particular row and column as shown below
metric[0:1,1:2] = 1.23
metric[0:1,2:3] = 2.4
metric[0:1,3:4] = 20
metric[0:1,4:5] = 10
metric[0:1,5:6] = 0.56
metric[0:1,6:7] = 0.50
Now, apart from the integer value, I want to insert a string to the 6th column of 1st row. i.e.
metric[0:1,6:7] = str('5') + "Days"
which I want to insert "5 Days" in the 6th column of 1st row. How to do this?? please suggest...