How to Create Pandas ETL pipeline 🔥

preview_player
Показать описание
✅Keep supporting me to get 25K subscribers ❤

✅Important Links:
Socials:

✅Codes & Donations:

✅If You get impressed with my work Then Buy me a cup of coffee:

🎶Music by:
Creative Commons — Attribution 3.0 Unported — CC BY 3.0

✅Thanks ..!

🔊Disclaimer:
All the videos, songs, images, and graphics used in the video belong to their respective owners and I or this channel do not claim any right over them.

Copyright Disclaimer under section 107 of the Copyright Act of 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing.”
Рекомендации по теме
Комментарии
Автор

Instead of using 'Pipe' function, can't we call all those 3 functions sequentially? What is the difference?

shaan
Автор

Haha...I'm out of breath watching this video! (But I learned a thing or two.) Thanks!

PulpFreePress
Автор

Hi Sir!
Do we need to learn OOPS concept for ETL testing??
Sir can you please tell me about Python Scripting is python scripting are written using pandas or some other concept?

KiranHarijan-ihpg
Автор

Hello,
Thanks for sharing this interesting piece.
Is this suitable to apply as a data engineer?

okorochaobinna
Автор

Hello,
Thank you for the nice demo!!
I'm wondering about the stand alone "df" as seen below.

Seems like in can be removed with a problem to the rest of the code?
Is there some reason for this?

Thank you
Morgan



df = pd.DataFrame({
"id": [100, 100, 101, 102, 103, 104, 105, 106],
"A": [1, 2, 3, 4, 5, 2, np.nan, 5],
"B": [45, 56, 48, 47, 62, 112, 54, 49],
"C": [1.2, 1.4, 1.1, 1.8, np.nan, 1.4, 1.6, 1.5]
})
df

mtmanalyst