本文簡要介紹
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。