本文简要介绍
pyspark.sql.functions.sentences
的用法。用法:
pyspark.sql.functions.sentences(string, language=None, country=None)
将字符串拆分为句子数组,其中每个句子都是单词数组。 ‘language’ 和 ‘country’ 参数是可选的,如果省略,则使用默认区域设置。
版本 3.2.0 中的新函数。
例子:
>>> df = spark.createDataFrame([["This is an example sentence."]], ["string"]) >>> df.select(sentences(df.string, lit("en"), lit("US"))).show(truncate=False) +-----------------------------------+ |sentences(string, en, US) | +-----------------------------------+ |[[This, is, an, example, sentence]]| +-----------------------------------+
相关用法
- Python pyspark session_window用法及代码示例
- Python pyspark second用法及代码示例
- Python pyspark sequence用法及代码示例
- Python pyspark slice用法及代码示例
- Python pyspark size用法及代码示例
- Python pyspark struct用法及代码示例
- Python pyspark spark_partition_id用法及代码示例
- Python pyspark split用法及代码示例
- Python pyspark shiftleft用法及代码示例
- Python pyspark schema_of_csv用法及代码示例
- Python pyspark sort_array用法及代码示例
- Python pyspark sha1用法及代码示例
- Python pyspark substring用法及代码示例
- Python pyspark shiftright用法及代码示例
- Python pyspark shiftrightunsigned用法及代码示例
- Python pyspark sql用法及代码示例
- Python pyspark sha2用法及代码示例
- Python pyspark substring_index用法及代码示例
- Python pyspark schema_of_json用法及代码示例
- Python pyspark soundex用法及代码示例
- Python pyspark shuffle用法及代码示例
- Python pyspark create_map用法及代码示例
- Python pyspark date_add用法及代码示例
- Python pyspark DataFrame.to_latex用法及代码示例
- Python pyspark DataStreamReader.schema用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.sql.functions.sentences。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。