如何检查字段是否存在于给定数据框的所有行中

时间:2019-04-09 19:51:17

标签: pyspark

我的数据框具有字段(X,Y,Z)->但是,数据框的几行没有字段'Z'。我现在有一张这样的支票

import puppeteer from 'puppeteer'

async function getHTML(url) {
  const browser = await puppeteer.launch()
  const page = await browser.newPage()
  await page.goto(url)

  const listItem = await page.evaluate(() =>
    [...document.querySelectorAll('.aditem')].map(item => ({
      title: item.querySelector('.text-module-begin').textContent.trim(),
      price: item.querySelector('.aditem-details strong').textContent.trim(),
      link: item.querySelector('.ellipsis').href,
      img: item.querySelector('.imagebox').dataset.imgsrc,
      image: item.querySelector('img').src,
    }))
  )
  console.log(listItem)

  await browser.close()
}

但是在某些情况下,当某些行具有该字段而某些其他行却没有该字段时,该如何检查呢?

注意: “ Z”可以为“ null”或具有some_value。有时可能根本没有Z场。

0 个答案:

没有答案