[Spark][Python]DataFrame where 操作例子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Spark][Python]DataFrame where 操作例子相关的知识,希望对你有一定的参考价值。
[Spark][Python]DataFrame中取出有限个记录的例子 的 继续
[15]: myDF=peopleDF.where("age>21")
In [16]: myDF.limit(2).show()
+---+-------+-----+----+
|age| name|pcode|pcoe|
+---+-------+-----+----+
| 30|Brayden|94304|null|
| 46| Diana| null|null|
+---+-------+-----+----+
以上是关于[Spark][Python]DataFrame where 操作例子的主要内容,如果未能解决你的问题,请参考以下文章
[Spark][Python]spark 从 avro 文件获取 Dataframe 的例子
如何在 Spark 中使用 Python 查找 DataFrame 中的分区数以及如何在 Spark 中使用 Python 在 DataFrame 中创建分区
[Spark][Python][RDD][DataFrame]从 RDD 构造 DataFrame 例子
[Spark][Python]DataFrame select 操作例子