14. Databricks | Pyspark: Pivot & Unpivot
ฝัง
- เผยแพร่เมื่อ 10 ก.พ. 2025
- #Pivot, #Unpivot #Pyspark, #Databricks, #Spark
#Databricks, #DatabricksTutorial, #AzureDatabricks
#Databricks
#Pyspark
#Spark
#AzureDatabricks
#AzureADF
#Databricks #LearnPyspark #LearnDataBRicks #DataBricksTutorial
databricks spark tutorial
databricks tutorial
databricks azure
databricks notebook tutorial
databricks delta lake
databricks azure tutorial,
Databricks Tutorial for beginners,
azure Databricks tutorial
databricks tutorial,
databricks community edition,
databricks community edition cluster creation,
databricks community edition tutorial
databricks community edition pyspark
databricks community edition cluster
databricks pyspark tutorial
databricks community edition tutorial
databricks spark certification
databricks cli
databricks tutorial for beginners
databricks interview questions
databricks azure
highly underrated channel. no body has explained databricks so well.
Thank you
V true indeed
Thank you
Thank you for your efforts to provide this content.
Glad you enjoy it!
So well Articulated content.!!!
Thank you!
Hi Raja, Thanks for this effort to make our self to boost pyspark knowledge. Can I know How to access all those code in the pyspark playlist?
How to do the same unpivot but with multiple columns so for example if I have not only "company" but "company","category","randomCol" want them to be unchanged. so result is
columns :company, category, randomcol, quarter, revenue
same effect as DAX(powerbi): Table.Unpivot(#"step1", {"Q1","Q2"}, "Quarter", "Revenue")- which adds columns quarter and revenue leaving all the other columns present in the table multiplicated when needed
Videos are very informative, but the starting and ending music is so annoying.
Changed the starting music in later videos
Hi Raja, If you have more than 30 columns, is there a way to get the values dynamically (rather than typing each column's name and values) when you unpivot the data?
Hi Purnima, yes it is possible with python logic. Though I haven't done, it's certainly possible
Hi Raja,
what about the interview do they ask syntax for functions ?? please reply
Hi Sravanthi, ideally interviewers are looking for the thought process of a candidate. So no exact syntax is expected
if i have multiple sum columns how should I perform
How to perform multiple Unpivot operations?
How to perform unpivot in spark SQL?
select col1, stack(3, 'col2', col2, 'col3', col3, 'col4', col4) as (column,agg_value) from table