Databricks read from CSV ============================ ``` %py path= "" df = spark.read.csv(path, header=True) df.cache() df.createOrReplaceTempView("csv_data") display(df) ```