have you tried the widgets utils from databricks?https://docs.microsoft.com/en-us/azure/databricks/notebooks/widgetsdbutils.widgets.text("database", "dev")
database_def = dbutils.widgets.getArgument("database")
print(database_def)You can parametriz...
I don't know if it meets your need, but maybe you can use the dispalyHTML function from databricks and use it to display html with also bootstrap to make it easy. something like this.displayHTML(
"""
<link href="https://cdn.jsdelivr.net/npm/boots...
Hi, maybe you can use the date_format function and retrieve hour and minutes as stringimport pyspark.sql.functions as F
aapl_table.filter(
F.date_format(F.col('AAPL_Time '),'HHmm').between("0930","1630")
)This is the version in pyspark, if you...
Hi, I think you can use this option for the csvReadeespark.read.options(header = True, sep = ",", unescapedQuoteHandling = "BACK_TO_DELIMITER").csv("your_file.csv")especially the unescapedQuoteHandling. You can search for the other options at this l...