pyspark interview questions and answers | regular expression in pyspark| regexp_replace |

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ธ.ค. 2024

ความคิดเห็น •

  • @rahulmittal116
    @rahulmittal116 4 หลายเดือนก่อน

    Nice🤙

    • @DEwithDhairy
      @DEwithDhairy  4 หลายเดือนก่อน

      Thanks Rahul

  • @bhaskaravenkatesh6994
    @bhaskaravenkatesh6994 10 หลายเดือนก่อน +1

    Use display(df) in databricks for good way of presenting

  • @gudiatoka
    @gudiatoka 10 หลายเดือนก่อน

    Keep helping ❤

  • @shashireddy3573
    @shashireddy3573 10 หลายเดือนก่อน +1

    Bro, please make Scala Spark and SQL spark interview videos.

    • @DEwithDhairy
      @DEwithDhairy  10 หลายเดือนก่อน

      Sure will try

  • @codjawan
    @codjawan 7 หลายเดือนก่อน

    My approach by creating a function,
    def con(a):
    B = ""
    for i in a:
    if i != " " and i.lower() not in ['a','e','i','o','u']:
    B += "".join(i)
    return B
    const = udf(con)
    df.withColumn('new', const('message')).withColumn('count',length('new')).drop('message').show()