Answers for "get schema of json pyspark"

0

get schema of json pyspark

schema = StructType()
schema = map(lambda x: schema.add(x, StringType(), True), (data["json_data_schema"]))[0][0:]
Posted by: Guest on April-06-2022

Python Answers by Framework

Browse Popular Code Answers by Language