search
Search
Login
Unlock 100+ guides
menu
menu
web
search toc
close
Comments
Log in or sign up
Cancel
Post
account_circle
Profile
exit_to_app
Sign out
What does this mean?
Why is this true?
Give me some examples!
search
keyboard_voice
close
Searching Tips
Search for a recipe:
"Creating a table in MySQL"
Search for an API documentation: "@append"
Search for code: "!dataframe"
Apply a tag filter: "#python"
Useful Shortcuts
/ to open search panel
Esc to close search panel
to navigate between search results
d to clear all current filters
Enter to expand content preview
icon_star
Doc Search
icon_star
Code Search Beta
SORRY NOTHING FOUND!
mic
Start speaking...
Voice search is only supported in Safari and Chrome.
Navigate to

NumPy Random Generator | shuffle method

schedule Aug 12, 2023
Last updated
local_offer
PythonNumPy
Tags
mode_heat
Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!

NumPy Random's shuffle(~) method randomly shuffles the NumPy array in-place.

NOTE

To get a new array of shuffled values, use permutation(~) instead.

Parameters

1. x | NumPy array or MutableSequence

The array to shuffle.

2. axislink | int | optional

The axis to shuffle. By default, axis=0.

Return Value

None - this operation is done in-place.

Examples

Basic usage

Consider the following NumPy array:

import numpy as np
x = np.arange(10)
x
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])

To shuffle this NumPy array:

rng = np.random.default_rng()
rng.shuffle(x)
x
array([4, 0, 2, 9, 6, 3, 1, 5, 8, 7])

Notice how the shuffle is done in-place.

Setting axis

Consider the following two-dimensional array:

x = np.arange(12).reshape((3,4))
x
array([[ 0, 1, 2, 3],
[ 4, 5, 6, 7],
[ 8, 9, 10, 11]])

By default, axis=0, which means that rows are shuffled:

rng = np.random.default_rng(seed=42)
rng.shuffle(x) # axis=0
x
array([[ 8, 9, 10, 11],
[ 4, 5, 6, 7],
[ 0, 1, 2, 3]])

To shuffle the columns, set axis=1:

rng.shuffle(x, axis=1)
x
array([[ 2, 0, 3, 1],
[ 6, 4, 7, 5],
[10, 8, 11, 9]])

Setting a seed

In order to be able to reproduce the randomness, set a seed like so:

rng = np.random.default_rng(seed=42)
x = np.arange(10)
rng.shuffle(x)
x
array([5, 6, 0, 7, 3, 2, 4, 9, 1, 8])
robocat
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
1
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!