Skip to content

Course Notes

Use this workspace to take notes, store code snippets, or build your own interactive cheatsheet! For courses that use data, the datasets will be available in the datasets folder.

# Import any packages you want to use here
from pyspark.sql import SparkSession
# Create my_spark
my_spark = SparkSession.builder.getOrCreate()

# Print my_spark
print(my_spark)

1 hidden cell

Take Notes

Add notes here about the concepts you've learned and code cells with code you want to keep.

Add your notes here

for the rest of this course you'll have a SparkSession called spark available in your workspace!

# Add your code snippets here