Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature br #35

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
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
5 changes: 5 additions & 0 deletions temperatures.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,8 @@
# COMMAND ----------

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

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

# MAGIC %md
# MAGIC test repo push