where cut query melt函数用法

【Python】where cut query melt函数用法[编程语言教程]

一,where函数用法

where可以通过Pandas包调用也可以通过numpy来调用。但是日常我们使用numpy调用where的场景会更多。

一起来看一下两者的使用及区别吧。技术分享图片

1. 使用Pandas中的where

数据源

 1 #%%
 2 
 3 import pandas as pd
 4 import numpy as np
 5 df = pd.DataFrame(
 6     {
 7         "商品":["mate book Pro2020 X","mate P40","mate Pro 40"],
 8         "活动价":[9899,0,6899],
 9         "原价":[10480,4188,7388]
10     }
11 )
12 df
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » where cut query melt函数用法