Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python dataframe limit rows

# Import pandas package 
import pandas as pd 
    
# Define a dictionary containing employee data 
data = {'Name':['Jai', 'Princi', 'Gaurav', 'Anuj'], 
        'Age':[27, 24, 22, 32], 
        'Address':['Delhi', 'Kanpur', 'Allahabad', 'Kannauj'], 
        'Qualification':['Msc', 'MA', 'MCA', 'Phd']} 
    
# Convert the dictionary into DataFrame  
df = pd.DataFrame(data) 
    
# select three rows and two columns 
print(df.loc[1:3, ['Name', 'Qualification']])
Comment

python dataframe limit rows

# Import pandas package 
import pandas as pd 
    
# Define a dictionary containing employee data 
data = {'Name':['Jai', 'Princi', 'Gaurav', 'Anuj'], 
        'Age':[27, 24, 22, 32], 
        'Address':['Delhi', 'Kanpur', 'Allahabad', 'Kannauj'], 
        'Qualification':['Msc', 'MA', 'MCA', 'Phd']} 
    
# Convert the dictionary into DataFrame  
df = pd.DataFrame(data) 
    
# select three rows and two columns 
print(df.loc[1:3, ['Name', 'Qualification']])
Comment

PREVIOUS NEXT
Code Example
Python :: 1024x768 
Python :: editing specific line in text file in python 
Python :: how to check if string ends with specific characters in python 
Python :: python left string 
Python :: how to make window pygame 
Python :: string to list of characters python 
Python :: numpy nditer 
Python :: bytes to Image PIL PY 
Python :: beautifulsoup find element containing text 
Python :: data.head on terminal 
Python :: prime numbers 1 to input 
Python :: expand figure matplotlib 
Python :: get current scene file name godot 
Python :: como agregar elementos a un array en python 
Python :: File "main.py", line 21 print("total harga:idr", bakso bulat +str Minuman Drink): ^ SyntaxError: invalid syntax 
Python :: how to use self.list.setCurrentRow() in pyqt5 
Python :: python togli spazio 
Python :: python char to hex 
Python :: how many orders has customer made database python 
Shell :: uninstall libreoffice ubuntu 
Shell :: conda install seaborn 
Shell :: conda install skimage 
Shell :: test internet speed terminal linux 
Shell :: ps not found 
Shell :: remove google chrome linux 
Shell :: npm show registry 
Shell :: stop port 3000 mac 
Shell :: display nginx logs 
Shell :: how to uninstall netbeans on ubuntu 
Shell :: git remove file from repo that has been added to gitignore 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =