【问题标题】:Pyspark string pattern from columns values and regexp expression来自列值和正则表达式的 Pyspark 字符串模式
【发布时间】:2018-09-07 08:44:36
【问题描述】:

您好,我有 2 列的数据框:

+----------------------------------------+----------+
|                  Text                  | Key_word |
+----------------------------------------+----------+
| First random text tree cheese cat      | tree     |
| Second random text apple pie three     | text     |
| Third random text burger food brain    | brain    |
| Fourth random text nothing thing chips | random   |
+----------------------------------------+----------+

我想生成第三列,其中一个单词出现在文本中的 key_word 之前。

+----------------------------------------+----------+-------------------+--+
|                  Text                  | Key_word | word_bef_key_word |  |
+----------------------------------------+----------+-------------------+--+
| First random text tree cheese cat      | tree     | text              |  |
| Second random text apple pie three     | text     | random            |  |
| Third random text burger food brain    | brain    | food              |  |
| Fourth random text nothing thing chips | random   | Fourth            |  |
+----------------------------------------+----------+-------------------+--+

我试过了,但它不起作用

df2=df1.withColumn('word_bef_key_word',regexp_extract(df1.Text,('\\w+)'df1.key_word,1))

这是创建数据框示例的代码

df = sqlCtx.createDataFrame(
    [
        ('First random text tree cheese cat' , 'tree'),
        ('Second random text apple pie three', 'text'),
        ('Third random text burger food brain' , 'brain'),
        ('Fourth random text nothing thing chips', 'random')
    ],
    ('Text', 'Key_word') 
)

【问题讨论】:

    标签: regex pyspark pattern-matching callable-object


    【解决方案1】:

    更新

    您也可以通过do this without a udf 使用pyspark.sql.functions.exprcolumn values as a parameter 传递给pyspark.sql.functions.regexp_extract

    from pyspark.sql.functions import expr
    
    df = df.withColumn(
        'word_bef_key_word', 
        expr(r"regexp_extract(Text, concat('\\w+(?= ', Key_word, ')'), 0)")
    )
    df.show(truncate=False)
    #+--------------------------------------+--------+-----------------+
    #|Text                                  |Key_word|word_bef_key_word|
    #+--------------------------------------+--------+-----------------+
    #|First random text tree cheese cat     |tree    |text             |
    #|Second random text apple pie three    |text    |random           |
    #|Third random text burger food brain   |brain   |food             |
    #|Fourth random text nothing thing chips|random  |Fourth           |
    #+--------------------------------------+--------+-----------------+
    

    原答案

    一种方法是使用udf 执行正则表达式:

    import re
    from pyspark.sql.functions import udf
    
    def get_previous_word(text, key_word):
        matches = re.findall(r'\w+(?= {kw})'.format(kw=key_word), text)
        return matches[0] if matches else None
    
    get_previous_word_udf = udf(
        lambda text, key_word: get_previous_word(text, key_word),
        StringType()
    )
    
    df = df.withColumn('word_bef_key_word', get_previous_word_udf('Text', 'Key_word'))
    df.show(truncate=False)
    #+--------------------------------------+--------+-----------------+
    #|Text                                  |Key_word|word_bef_key_word|
    #+--------------------------------------+--------+-----------------+
    #|First random text tree cheese cat     |tree    |text             |
    #|Second random text apple pie three    |text    |random           |
    #|Third random text burger food brain   |brain   |food             |
    #|Fourth random text nothing thing chips|random  |Fourth           |
    #+--------------------------------------+--------+-----------------+
    

    正则表达式模式'\w+(?= {kw})'.format(kw=key_word) 表示匹配一个单词后跟一个空格和key_word。如果有多个匹配项,我们将返回第一个。如果没有匹配,函数返回None

    【讨论】:

      猜你喜欢
      • 2015-07-19
      • 2018-01-02
      • 2015-11-28
      • 1970-01-01
      • 1970-01-01
      • 2020-05-06
      • 2019-11-09
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多