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
2 changes: 2 additions & 0 deletions my_lib/my_funcs.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# 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
16 changes: 5 additions & 11 deletions temperatures.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,4 @@
# Databricks notebook source
# MAGIC %md
# MAGIC **NOTE**: the following cell _**should**_ fail.
# MAGIC
# MAGIC Relative imports of Python libraries are currently not supported. ([Custom libraries can be uploaded to the workspace or installed from PyPi](https://docs.databricks.com/libraries/workspace-libraries.html).)

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

from my_lib.my_funcs import *

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

# MAGIC %md
# MAGIC Using `%run` allows you to execute a Databricks notebook in the current SparkSession, bringing any imported modules, declared variables, or defined functions into the current scope.
# MAGIC
Expand Down Expand Up @@ -52,3 +41,8 @@
# COMMAND ----------

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

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

# This is a CICD Demo notebook for the getting workloads into production