Answers for "number of rows in matrix pandas"

1

pandas number of observations

### first method ###
len(df)
### second method ###
len(df.index)
### third method ###
df.shape[0]
Posted by: Guest on September-24-2021
0

how to get the number of rows and columns in a numpy array

c = np.array([[1, 2, 3],[6, 5, 4]])

'''
c returns the following matrix
[1, 2, 3]
[4, 5, 6]
'''
print(c.shape)

#returns: (2,3) (number of rows, number of columns)
Posted by: Guest on October-06-2021

Code answers related to "number of rows in matrix pandas"

Python Answers by Framework

Browse Popular Code Answers by Language