Vstack
10 min
Niveau 4
Introduction
Variantes de la fonction numpy.stack pour empiler de façon à faire un seul tableau verticalement.
Exemple
import numpy as np
a = np.array([[1,2],[3,4]])
print 'First array:'
print a
print '\n'
b = np.array([[5,6],[7,8]])
print 'Second array:'
print b
print '\n'
print 'Vertical stacking:'
c = np.vstack((a,b))
print c
Il produirait le résultat suivant -
First array:
[
[1 2]
[3 4]
]
Second array:
[
[5 6]
[7 8]
]
Vertical stacking:
[
[1 2]
[3 4]
[5 6]
[7 8]
]
Besoin d'aide ?
Rejoignez notre communauté officielle et ne restez plus seul à bloquer sur un problème !