71. Databricks | Pyspark | Window Functions: Lead and Lag

preview_player
Показать описание
Azure Databricks Learning: Window Functions - Lead and Lag
==================================================

What are window functions and what is the use of lead and lag functions?
Window functions are very commonly used data transformations in databricks development. Window functions are transformations which split data into partitions and apply certain computation on top of partitioned data.

This video covers more details about lead and lag functions

#WindowFunctions, #DatabricksWindowFunction, #DatabricksWindow, #DatabricksWindowLead, #DatabricksWindowLag, #WindowFunctionsLeadLag #LeadLag, #PysparkLeadLag, #PysparkLead, #PysparkLag,#DatabricksRealtime, #SparkRealTime, #DatabricksInterviewQuestion, #DatabricksInterview, #SparkInterviewQuestion, #SparkInterview, #PysparkInterviewQuestion, #PysparkInterview, #BigdataInterviewQuestion, #BigdataInterviewQuestion, #BigDataInterview, #PysparkPerformanceTuning, #PysparkPerformanceOptimization, #PysparkPerformance, #PysparkOptimization, #PysparkTuning, #DatabricksTutorial, #AzureDatabricks, #Databricks, #Pyspark, #Spark, #AzureDatabricks, #AzureADF, #Databricks, #LearnPyspark, #LearnDataBRicks, #DataBricksTutorial, #azuredatabricks, #notebook, #Databricksforbeginners
Рекомендации по теме
Комментарии
Автор

Great content. But not able to find all your videos under your page. Can you please add them in one page and share the link.

sharmadtadkodkar
Автор

Have you posted videos on sort merge join, autobroad cast join and shuffle join..? if not can you post that video

aswaniyettapu
Автор

Hi Raja, you are not mentioning dataframe name while performing window definition. Will it automatically point to dataframe created in previous cell? And what if my notebook has multiple dataframes?

rajunaik
Автор

Hi Sir,

Stuck in one scenario. Please assist
input datafram is as below
id description
1 "abcd
pqe
rrr
qqq"
2 "ttt
ppp
ooo
www
iii"
3 "aaa
ppp
eee
zzz
rrrr"
4 "ssss
jjjj"

output dataframe should be as below last line of element
id description
1 qqq
2 iii
3 rrrr
4 jjjj

sachinchandanshiv