Python
파이썬_0 이상 값만 추출
정문가
2020. 9. 20. 23:22
# 0이상 값이 포함된 row만 추출
retail=retail[retail['Quantity']>0]
retail=retail[retail['UnitPrice']>0]