pandas dataframe show one row
df.iloc[0,:]
pandas dataframe show one row
df.iloc[0,:]
how to show n rows with pandas python
import pandas as pd
#initialize a dataframe
df = pd.DataFrame(
[[21, 72, 67],
[23, 78, 62],
[32, 74, 56],
[73, 88, 67],
[32, 74, 56],
[43, 78, 69],
[32, 74, 54],
[52, 54, 76]],
columns=['a', 'b', 'c'])
#get first 3 rows
n=3
df1 = df.head(n)
#print the dataframe
print(df1)
display entire row pandas
pd.set_option('display.max_colwidth', None)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us