How to convert true false values in dataframe as 1 for true and 0 for false(如何将数据框中的真假值转换为 1 为真,0 为假)
问题描述
如何将Dataframe中的真假值转换为1为真,0为假
How to convert true false values in Dataframe as 1 for true and 0 for false
COL1 COL2 COL3 COL4
12 TRUE 14 FALSE
13 FALSE 13 TRUE
OUTPUT
12 1 14 0
13 0 13 1
推荐答案
首先,如果你有字符串 'TRUE'
和 'FALSE'
,你可以将它们转换像这样布尔 True
和 False
值:
First, if you have the strings 'TRUE'
and 'FALSE'
, you can convert those to boolean True
and False
values like this:
df['COL2'] == 'TRUE'
这会给你一个 bool
列.可以使用 astype
转换为 int
(因为 bool
是整数类型,其中 True
表示 1
和 False
表示 0
,这正是你想要的):
That gives you a bool
column. You can use astype
to convert to int
(because bool
is an integral type, where True
means 1
and False
means 0
, which is exactly what you want):
(df['COL2'] == 'TRUE').astype(int)
要用这个新的 int
列替换旧的字符串列,只需分配它:
To replace the old string column with this new int
column, just assign it:
df['COL2'] = (df['COL2'] == 'TRUE').astype(int)
要同时对两列执行此操作,只需使用列列表进行索引:
And to do that to two columns at one, just index with a list of columns:
df[['COL2', 'COL4']] = (df[['COL2', 'COL4']] == 'TRUE').astype(int)
这篇关于如何将数据框中的真假值转换为 1 为真,0 为假的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将数据框中的真假值转换为 1 为真,0 为假
基础教程推荐
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 筛选NumPy数组 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01