>>> A = np.random.randint(5, size=(10,3))
>>> A
array([[1, 3, 0],
[3, 2, 0],
[0, 2, 1],
[1, 1, 4],
[3, 2, 2],
[0, 1, 0],
[1, 3, 1],
[0, 4, 1],
[2, 4, 2],
[3, 3, 1]])
>>> idx = np.random.randint(10, size=2)
>>> idx
array([7, 6])
>>> A[idx,:]
array([[0, 4, 1],
[1, 3, 1]])
นำมารวมกันเป็นกรณีทั่วไป:
A[np.random.randint(A.shape[0], size=2), :]
สำหรับการทดแทนที่ไม่ใช่ (จำนวน 1.7.0+):
A[np.random.choice(A.shape[0], 2, replace=False), :]
ฉันไม่เชื่อว่ามีวิธีที่ดีในการสร้างรายการแบบสุ่มโดยไม่ต้องเปลี่ยนก่อน 1.7 บางทีคุณสามารถตั้งค่าคำจำกัดความเล็ก ๆ ที่รับรองว่าค่าทั้งสองนั้นไม่เหมือนกัน