Вставьте несколько элементов в серии Pandas, где есть сходства - PullRequest
0 голосов
/ 01 марта 2019

Здесь я хотел бы вставить строку "<td class='test'>None</td>" между тем местом, где есть две строки с «href» в теге - обратите внимание, каждая строка с href НЕ идентична.

import pandas as pd

table = pd.Series(

        ["<td class='test'><a class='test' href=...", # 0 
        "<td class='test'>A</td>",                    # 1
        "<td class='test'><a class='test' href=...",  # 2
        "<td class='test'>B</td>",                    # 3
        "<td class='test'><a class='test' href=...",  # 4
        "<td class='test'><a class='test' href=...",  # 5
        "<td class='test'>C</td>",                    # 6
        "<td class='test'><a class='test' href=...",  # 7 
        "<td class='test'>F</td>",                    # 8
        "<td class='test'><a class='test' href=...",  # 9 
        "<td class='test'><a class='test' href=...",  # 10 
        "<td class='test'>X</td>"])                   # 11

insertAt = []
for i in range(0, len(table)):
  if 'href' in table[i] and 'href' in table[i+1]:
    print(i + 1, ' is duplicated')
    insertAt.append(i)

# 5  is duplicated
# 10  is duplicated
# [4, 9]

Вот как должен выглядеть вывод:

#         ["<td class='test'><a class='test' href=...", # 0 
#         "<td class='test'>A</td>",                    # 1
#         "<td class='test'><a class='test' href=...",  # 2
#         "<td class='test'>B</td>",                    # 3
#         "<td class='test'><a class='test' href=...",  # 4
#         "<td class='test'>None</td>",                 # 5 Insert "<td class='test'>None</td>"
#         "<td class='test'><a class='test' href=...",  # 6
#         "<td class='test'>C</td>",                    # 7
#         "<td class='test'><a class='test' href=...",  # 8 
#         "<td class='test'>F</td>",                    # 9
#         "<td class='test'><a class='test' href=...",  # 10
#         "<td class='test'>None</td>",                 # 11 Insert <td class='test'>None</td>"
#         "<td class='test'><a class='test' href=...",  # 12 
#         "<td class='test'>X</td>"]                    # 13

Ответы [ 2 ]

0 голосов
/ 01 марта 2019

Решение Ecotrazar выше и быстрее и элегантнее.Вот моя версия, использующая для циклов и его метод вставки.

import pandas as pd

table = pd.Series(

        ["<td class='test'><a class='test' href=...", # 0 
        "<td class='test'>A</td>",                    # 1
        "<td class='test'><a class='test' href=...",  # 2
        "<td class='test'>B</td>",                    # 3
        "<td class='test'><a class='test' href=...",  # 4
        "<td class='test'><a class='test' href=...",  # 5
        "<td class='test'>C</td>",                    # 6
        "<td class='test'><a class='test' href=...",  # 7 
        "<td class='test'>F</td>",                    # 8
        "<td class='test'><a class='test' href=...",  # 9 
        "<td class='test'><a class='test' href=...",  # 10 
        "<td class='test'>X</td>"])                   # 11

insertAt = []
for i in range(0, len(table)):

  if 'href' in table[i] and 'href' in table[i + 1] and i == 0:
    print(i + 1, ' is duplicated')
    insertAt.append(True)
  elif i == 0:
     insertAt.append(False)

  if 'href' in table[i] and 'href' in table[i+1] and i > 0:
    print(i + 1, ' is duplicated')
    insertAt.append(True)

  else:
    insertAt.append(False)

insertAt = pd.Series(insertAt)
print(insertAt)

import numpy as np
array = np.insert(table.values, insertAt[insertAt].index, "<td class='test'>None</td>")
pd.Series(array) # back to series if necessary
0 голосов
/ 01 марта 2019

Этого можно легко достичь, если перейти к numpy.

В вашем примере:

dups = table.str.contains('href') & table.shift(1).str.contains('href')

array = np.insert(table.values, dups[dups].index, "<td class='test'>None</td>")

pd.Series(array)
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...