numpy.repeat() en Python
La función numpy.repeat() repite elementos de la array – arr. Sintaxis: numpy.repeat(arr, repetitions, axis = None) Parámetros: array : [array_like]Input array. repetitions : No. of repetitions of each array elements along the given axis. axis : Axis along which we want to repeat values. By default, it returns a flat output array. Devolver : An … Continue reading «numpy.repeat() en Python»