cancel
Showing results for 
Search instead for 
Did you mean: 
Pien
New Contributor II
since ‎04-12-2023
‎06-26-2023

User Stats

  • 6 Posts
  • 0 Solutions
  • 0 Kudos given
  • 1 Kudos received

User Activity

I got errors of incompatible filetypes while converting to pyspark df, so I changed all columns to string types. Now I'm trying to add this df to an existing table (where not everything was a string type). And I'm getting an error of incompatible da...
Hi all,I'm trying to get a date out of the columns year and week. The week format is not recognized.  df_loaded = df_loaded.withColumn("week_year", F.concat(F.lit("3"),F.col('Week'), F.col('Jaar')))df_loaded = df_loaded.withColumn("date", F.to_date(F...