Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions my_lib/my_funcs.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Databricks notebook source
def convertFtoC(unitCol, tempCol):
from pyspark.sql.functions import when, col
return when(col(unitCol) == "F", (col(tempCol) - 32) * (5/9)).otherwise(col(tempCol)).alias("temp_celcius")
Expand Down
8 changes: 8 additions & 0 deletions temperatures.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,11 @@
# COMMAND ----------

display(df.select(convertFtoC("unit", "temp")))

# COMMAND ----------

df.count()

# COMMAND ----------