허허헛 그래프큐엘 차분히 배우자... 오늘은 간단한 pandas 조건부 np.where 를 배웠다. 한가지 조건은 고객 리스트에 해당하는 고객이 참여하였는가 여부를 판단하는것이였다. import pandas as pd import numpy as np customerFiles = pd.read_excel("file path") checkList = ["jeck", "mike", "taler", "aily", ... ] customerFiles["check"] = np.where(customerFiles["customer"].str.contains("|".join(checkList)),"yes","no") or customerFiles["check"] = np.where(customerFiles["cust..