NumPy
keyboard_arrow_down 319 guides
chevron_leftDocumentation
Method argpartition
NumPy Random Generator4 topics
Method choiceMethod dotMethod finfoMethod histogramMethod iinfoMethod maxMethod meanMethod placeMethod rootsMethod seedMethod uniformMethod viewMethod zerosMethod sumObject busdaycalendarMethod is_busdayProperty dtypeMethod uniqueMethod loadtxtMethod vsplitMethod fliplrMethod setdiff1dMethod msortMethod argsortMethod lexsortMethod aroundMethod nanmaxMethod nanminMethod nanargmaxMethod nanargminMethod argmaxMethod argminProperty itemsizeMethod spacingMethod fixMethod ceilMethod diffProperty flatProperty realProperty baseMethod flipMethod deleteMethod amaxMethod aminMethod logical_xorMethod logical_orMethod logical_notMethod logical_andMethod logaddexpMethod logaddexp2Method logspaceMethod not_equalMethod equalMethod greater_equalMethod lessMethod less_equalMethod remainderMethod modMethod emptyMethod greaterMethod isfiniteMethod busday_countMethod repeatMethod varMethod random_sampleMethod randomMethod signMethod stdMethod absoluteMethod absMethod sortMethod randintMethod isrealMethod linspaceMethod gradientMethod allMethod sampleProperty TProperty imagMethod covMethod insertMethod logMethod log1pMethod exp2Method expm1Method expMethod arccosMethod cosMethod arcsinMethod sinMethod tanMethod fromiterMethod trim_zerosMethod diagflatMethod savetxtMethod count_nonzeroProperty sizeProperty shapeMethod reshapeMethod resizeMethod triuMethod trilMethod eyeMethod arangeMethod fill_diagonalMethod tileMethod saveMethod transposeMethod swapaxesMethod meshgridProperty mgridMethod rot90Method log2Method radiansMethod deg2radMethod rad2degMethod degreesMethod log10Method appendMethod cumprodProperty nbytesMethod tostringProperty dataMethod modfMethod fmodMethod tolistMethod datetime_as_stringMethod datetime_dataMethod array_splitMethod itemsetMethod floorMethod put_along_axisMethod cumsumMethod bincountMethod putMethod putmaskMethod takeMethod hypotMethod sqrtMethod squareMethod floor_divideMethod triMethod signbitMethod flattenMethod ravelMethod rollMethod isrealobjMethod diagMethod diagonalMethod quantileMethod onesMethod iscomplexobjMethod iscomplexMethod isscalarMethod divmodMethod isnatMethod percentileMethod isnanMethod divideMethod addMethod reciprocalMethod positiveMethod subtractMethod medianMethod isneginfMethod isposinfMethod float_powerMethod powerMethod negativeMethod maximumMethod averageMethod isinfMethod multiplyMethod busday_offsetMethod identityMethod interpMethod squeezeMethod get_printoptionsMethod savez_compressedMethod savezMethod loadMethod asfarrayMethod clipMethod arrayMethod array_equivMethod array_equalMethod frombufferMethod set_string_functionMethod matmulMethod genfromtxtMethod fromfunctionMethod asscalarMethod searchsortedMethod full_likeMethod fullMethod shares_memoryMethod ptpMethod digitizeMethod argwhereMethod geomspaceMethod zeros_likeMethod fabsMethod flatnonzeroMethod vstackMethod dstackMethod fromstringMethod tobytesMethod expand_dimsMethod ranfMethod arctanMethod itemMethod extractMethod compressMethod chooseMethod asarrayMethod asmatrixMethod allcloseMethod iscloseMethod anyMethod corrcoefMethod truncMethod prodMethod crossMethod true_divideMethod hsplitMethod splitMethod rintMethod ediff1dMethod lcmMethod gcdMethod cbrtMethod flipudProperty ndimMethod array2stringMethod set_printoptionsMethod whereMethod hstackChar32 topics
check_circle
Mark as learned thumb_up
0
thumb_down
1
chat_bubble_outline
0
Comment auto_stories Bi-column layout
settings
NumPy | split method
schedule Aug 10, 2023
Last updated local_offer
Tags Python●NumPy
tocTable of Contents
expand_more Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!
Start your free 7-days trial now!
Numpy's split(~)
method divides up the input array as per the specified parameters.
Parameters
1. a
| array-like
The input array that you want to split.
2. indices_or_sections
| int
If an int, n, is given, then the input array will be split up into n equal arrays along the specified axis. To be more precise about where to split up the arrays, provide a 1D array of sorted integers instead.
3. axis
| None
or int
| optional
The axis along which to perform the split. By default, axis=0
.
Return value
A list containing the split up Numpy arrays.
Examples
Basic usage
a = np.array([4,5,6,7,8,9])np.split(a, 2)
[array([4, 5, 6]), array([7, 8, 9])]
When the split is not even, then an error is thrown:
a = np.array([4,5,6,7,8])np.split(a, 2)
ValueError: array split does not result in an equal division
Splitting via slicing
a = np.array([4,5,6,7,8,9])np.split(a, (2,3))
[array([4, 5]), array([6]), array([7, 8, 9])]
Here, we're slicing like follows:
a[:2]a[2:3]a[3:]
Splitting 2D arrays
Consider the following 2D array:
a = np.array([[1,2,3,4],[5,6,7,8]])a
array([[1, 2, 3, 4], [5, 6, 7, 8]])
Chop horizontally
To split a
by rows:
np.split(a, 2, axis=0)
[array([[1, 2, 3, 4]]), array([[5, 6, 7, 8]])]
Chop vertically
To split a
by columns:
np.split(a, 2, axis=1)
[array([[1, 2], [5, 6]]), array([[3, 4], [7, 8]])]
Slicing
To split a
by columns via slicing:
np.split(a, (2,3), axis=1)
[array([[1, 2], [5, 6]]), array([[3], [7]]), array([[4], [8]])]
Here, the columns we obtain are:
first two columnsthird columnfourth column
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
0
thumb_down
1
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!