I want to change first column to int in dnarray
JavaScript
x
2
1
print(gcp)
2
[[ 1. 6.218 2.974 0. ] [ 2. 32.881 8.66 0. ] [ 3.
38.94 35.843 0. ] [ 4. 8.52 35.679 0. ] [ 5. 52.902 49.538 0. ]]
JavaScript
1
2
1
print(gcp.dtype)
2
float64
JavaScript
1
3
1
gcp[:,0] = (gcp[:,0]).astype(int)
2
print(((gcp[:,0]).astype(int)).dtype)
3
int32
JavaScript
1
2
1
print(gcp.dtype)
2
float64
I tried to use deepcopy, but no success. Any help will be good, I didn’t find any similar questions.
Advertisement
Answer
To have just the index of the row(+1)
as element of the array seems redundant to me, maybe you don’t need the first row at all.
Otherwise the best option to me is to use two arrays:
JavaScript
1
3
1
gcp0 = gcp[:, 0].astype(int)
2
gcp = gcp[:, 1:]
3
Another possibility is to define separate named fields
with respective dtypes
for the separate columns, which brings you maybe closer to pandas
, which is another option you have.
JavaScript
1
11
11
1
gcp = np.array([(1., 6.218, 2.974, 0.),
2
(2., 32.881, 8.66, 0.),
3
(3., 38.94, 35.843, 0.),
4
(4., 8.52, 35.679, 0.),
5
(5., 52.902, 49.538, 0.)],
6
dtype={'names': ['index', 'a0', 'a1', 'a2'],
7
'formats': [int, float, float, float]})
8
9
print(gcp['index'])
10
# [1 2 3 4 5]
11