Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to get the first few lines of an ndarray 3d

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

       [[12, 13, 14, 15],
        [16, 17, 18, 19],
        [20, 21, 22, 23]]])
>>> v[:, 1, 3]
array([ 7, 19])
Comment

how to get the first few lines of an ndarray

In [11]: a[:,:2]
Out[11]: 
array([[-0.57098887, -0.4274751 ],
       [-0.22279713, -0.51723555],
       [ 0.67492385, -0.69294472],
       [ 0.41086611,  0.26374238]])
Comment

PREVIOUS NEXT
Code Example
Python :: train_size 
Python :: python manage.py collectstatic --noinput 
Python :: how to check if an input is a string in python 
Python :: convert pandas dataframe/ table to python dictionary 
Python :: how to tell if member is a bot discord.py 
Python :: sys.path[0] 
Python :: change date format python code 
Python :: plotting two columns of a dataframe in python 
Python :: create an array string using for in python 
Python :: time a line of code python 
Python :: python open file relative to script location 
Python :: python glob all files in directory recursively 
Python :: python list slicing 
Python :: pandas replace string with another string 
Python :: how to get the current year in python 
Python :: 2 distinct numbers random number generator python 
Python :: python add element to array 
Python :: find common values in different dataframes pandas 
Python :: subsetting based on column value with list 
Python :: python adding digits 
Python :: view(-1) in pytorch 
Python :: concatenate dataframes pandas without duplicates 
Python :: calculate angle between 3 points python 
Python :: convert dict to string python 
Python :: django radio button 
Python :: pandas backfill 
Python :: python file count 
Python :: count occurrences of a character in a string python 
Python :: How to check for palindromes in python 
Python :: import time in python 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =