Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@

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

plane_data_selected = plane_data.select(*[col for col in data.columns if col not in ['year']], plane_data.year.cast('integer'))
plane_data_selected = plane_data.select(*[col for col in plane_data.columns if col not in ['year']], plane_data.year.cast('integer'))

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

Expand Down Expand Up @@ -185,4 +185,4 @@
# In practice, you might keep these around for longer for others to query

dbutils.fs.rm(f'/user/hive/warehouse/{db}.db', True)
spark.sql(f"DROP TABLE {table_name}")
spark.sql(f"DROP TABLE {table_name}")