VOOZH about

URL: https://www.geeksforgeeks.org/python/create-pyspark-dataframe-from-dictionary/

⇱ Create PySpark dataframe from dictionary - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Create PySpark dataframe from dictionary

Last Updated : 30 May, 2021

In this article, we are going to discuss the creation of Pyspark dataframe from the dictionary. To do this spark.createDataFrame() method method is used. This method takes two argument data and columns. The data attribute will contain the dataframe and the columns attribute will contain the list of columns name.

Example 1: Python code to create the student address details and convert them to dataframe

Output:

👁 Image

Example2: Create three dictionaries and pass them to the data frame in pyspark

Output:

👁 Image
Comment
Article Tags: