📜  使用自动模式推断读取 JSON 文件 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:23.425000             🧑  作者: Mango

代码示例1
# Read JSON files with automatic schema inference

df = spark.read.json("logs.json")
df.where("age > 21").select("name.first").show()