In this video we will learn how to slice and dice data from pandas DataFrame using loc and iloc methods. Here is the script to create the dataset.
import pandas as pd
emp= {"name":["Ankit","Rahul","Priya","Neeta"],"gender":["Male","Male","Female","Female"], "email":["[email protected]","[email protected]","[email protected]","[email protected]"] }
df = pd.DataFrame(emp)
Zero to hero(Advance) SQL Aggregation:
• All About SQL Aggregations | SQL Adva...
Most Asked Join Based Interview Question:
• Most Asked SQL JOIN based Interview Q...
Solving 4 Trick SQL problems:
• Solving 4 Tricky SQL Problems
Data Analyst Spotify Case Study:
• Data Analyst Spotify Case Study | SQL...
Top 10 SQL interview Questions:
• Top 10 SQL interview Questions and An...
Interview Question based on FULL OUTER JOIN:
• SQL Interview Question Based on Full ...
Playlist to master SQL :
• Complex SQL Questions for Interview P...
Rank, Dense_Rank and Row_Number:
• RANK, DENSE_RANK, ROW_NUMBER SQL Anal...
#python #pandas #analytics