- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在下面有一个示例数据框和函数。我创建了一个函数,它将获取“单元格”的坐标并将其放入一个元组中,以及将其放在那里的原因。我希望此函数也可以更改特定列的值。
import pandas as pd
import numpy as np
df1 = pd.DataFrame({'A' : [np.NaN,np.NaN,3,4,5,5,3,1,5,np.NaN],
'B' : [1,0,3,5,0,0,np.NaN,9,0,0],
'C' : [10,0,30,50,0,0,4,10,1,0],
'D' : [1,0,3,4,0,0,7,8,0,1],
'E' : [np.nan,'Unassign','Assign','Ugly','Appreciate',
'Undo','Assign','Unicycle','Assign','Unicorn',]})
print(df1)
highlights = []
def find_nan(list_col):
for c in list_col:
# if column is one of the dataframe's columns, go
if c in df1.columns:
# for each index x where column c of the dataframe is null, go
for x in df1.loc[df1[c].isnull()].index: #appends to the list of tuples
highlights.append(
tuple([x + 2, df1.columns.get_loc(c) + 1, f'{c} is Null in row {x + 2}']))
df1.iloc[x, df1.columns.get_loc('E')] = f'{c} is blank in row {x + 2}'
find_nan(['A','B'])
# using the function above, checks for all nulls in A and B
# Also places the coordinates and reason in a tuple and changes values of column 'E'
#output:
A B C D E
0 NaN 1.0 10 1 A is blank in row 2
1 NaN 0.0 0 0 A is blank in row 3
2 3.0 3.0 30 3 Assign
3 4.0 5.0 50 4 Ugly
4 5.0 0.0 0 0 Appreciate
5 5.0 0.0 0 0 Undo
6 3.0 NaN 4 7 Assign
7 1.0 9.0 10 8 Unicycle
8 5.0 0.0 1 0 Assign
9 NaN 0.0 0 1 A is blank in row 11
我想做的是添加逻辑,如果 E
已经填充,则将原因加在一起,或者如果为 null,则简单地更改 E
的值。这是我的问题:使用 df1.iloc
我似乎无法检查空值。
df1.iloc[0]['E'].isnull()
返回 AttributeError: 'float' object has no attribute 'isnull'
(显然)
解决这个问题:我可以使用 if np.isnan(df1.iloc[0]['E'])
,它的计算结果为 True
,但如果有是 E
中已有的值 我将得到一个 TypeError
。
基本上我想要的是我的函数中的这种逻辑:
if df1.iloc[x]['E'] is null:
df1.iloc[x, df1.columns.get_loc('E')] = 'PREVIOUS_VALUE' + f'{c} is blank in row {x + 2}'
else:
df1.iloc[x, df1.columns.get_loc('E')] = f'{c} is blank in row {x + 2}
我的函数在原始数据帧上的预期输出:
find_nan(['A','B'])
A B C D E
0 NaN 1.0 10 1 A is blank in row 2
1 NaN 0.0 0 0 Unassign and A is blank in row 3
2 3.0 3.0 30 3 Assign
3 4.0 5.0 50 4 Ugly
4 5.0 0.0 0 0 Appreciate
5 5.0 0.0 0 0 Undo
6 3.0 NaN 4 7 Assign and B is blank in row 8
7 1.0 9.0 10 8 Unicycle
8 5.0 0.0 1 0 Assign
9 NaN 0.0 0 1 Unicorn and A is blank in row 11
使用 Python 3.6。这是具有更多功能的更大项目的一部分,因此“添加原因”和“无明显原因”向索引添加 2
最佳答案
请注意,这是使用 Python 2 测试的,但我没有注意到任何会防止它在 Python 3 中工作。
def find_nan(df, cols):
if isinstance(cols, (str, unicode)):
cols = [cols] # Turn a single column into an list.
nulls = df[cols].isnull() # Find all null values in requested columns.
df['E'] = df['E'].replace(np.nan, "") # Turn NaN values into an empty string.
for col in cols:
if col not in df:
continue
# If null value in the column an existing value in column `E`, add " and ".
df.loc[(nulls[col] & df['E'].str.len().astype(bool)), 'E'] += ' and '
# For null column values, add to column `E`: "[Column name] is blank in row ".
df.loc[nulls[col], 'E'] += '{} is blank in row '.format(col)
# For null column values, add to column `E` the index location + 2.
df.loc[nulls[col], 'E'] += (df['E'][nulls[col]].index + 2).astype(str)
return df
>>> find_nan(df1, ['A', 'B'])
A B C D E
0 NaN 1 10 1 A is blank in row 2
1 NaN 0 0 0 Unassign and A is blank in row 3
2 3 3 30 3 Assign
3 4 5 50 4 Ugly
4 5 0 0 0 Appreciate
5 5 0 0 0 Undo
6 3 NaN 4 7 Assign and B is blank in row 8
7 1 9 10 8 Unicycle
8 5 0 1 0 Assign
9 NaN 0 0 1 Unicorn and A is blank in row 11
关于python - Pandas 在 iloc Nulls 上设置值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45511603/
pandas.crosstab 和 Pandas 数据透视表似乎都提供了完全相同的功能。有什么不同吗? 最佳答案 pivot_table没有 normalize争论,不幸的是。 在 crosstab
我能找到的最接近的答案似乎太复杂:How I can create an interval column in pandas? 如果我有一个如下所示的 pandas 数据框: +-------+ |
这是我用来将某一行的一列值移动到同一行的另一列的当前代码: #Move 2014/15 column ValB to column ValA df.loc[(df.Survey_year == 201
我有一个以下格式的 Pandas 数据框: df = pd.DataFrame({'a' : [0,1,2,3,4,5,6], 'b' : [-0.5, 0.0, 1.0, 1.2, 1.4,
所以我有这两个数据框,我想得到一个新的数据框,它由两个数据框的行的克罗内克积组成。正确的做法是什么? 举个例子:数据框1 c1 c2 0 10 100 1 11 110 2 12
TL;DR:在 pandas 中,如何绘制条形图以使其 x 轴刻度标签看起来像折线图? 我制作了一个间隔均匀的时间序列(每天一个项目),并且可以像这样很好地绘制它: intensity[350:450
我有以下两个时间列,“Time1”和“Time2”。我必须计算 Pandas 中的“差异”列,即 (Time2-Time1): Time1 Time2
从这个 df 去的正确方法是什么: >>> df=pd.DataFrame({'a':['jeff','bob','jill'], 'b':['bob','jeff','mike']}) >>> df
我想按周从 Pandas 框架中的列中累积计算唯一值。例如,假设我有这样的数据: df = pd.DataFrame({'user_id':[1,1,1,2,2,2],'week':[1,1,2,1,
数据透视表的表示形式看起来不像我在寻找的东西,更具体地说,结果行的顺序。 我不知道如何以正确的方式进行更改。 df示例: test_df = pd.DataFrame({'name':['name_1
我有一个数据框,如下所示。 Category Actual Predicted 1 1 1 1 0
我有一个 df,如下所示。 df: ID open_date limit 1 2020-06-03 100 1 2020-06-23 500
我有一个 df ,其中包含与唯一值关联的各种字符串。对于这些唯一值,我想删除不等于单独列表的行,最后一行除外。 下面使用 Label 中的各种字符串值与 Item 相关联.所以对于每个唯一的 Item
考虑以下具有相同名称的列的数据框(显然,这确实发生了,目前我有一个像这样的数据集!:() >>> df = pd.DataFrame({"a":range(10,15),"b":range(5,10)
我在 Pandas 中有一个 DF,它看起来像: Letters Numbers A 1 A 3 A 2 A 1 B 1 B 2
如何减去两列之间的时间并将其转换为分钟 Date Time Ordered Time Delivered 0 1/11/19 9:25:00 am 10:58:00 am
我试图理解 pandas 中的下/上百分位数计算,但有点困惑。这是它的示例代码和输出。 test = pd.Series([7, 15, 36, 39, 40, 41]) test.describe(
我有一个多索引数据框,如下所示: TQ bought HT Detailed Instru
我需要从包含值“低”,“中”或“高”的数据框列创建直方图。当我尝试执行通常的df.column.hist()时,出现以下错误。 ex3.Severity.value_counts() Out[85]:
我试图根据另一列的长度对一列进行子串,但结果集是 NaN .我究竟做错了什么? import pandas as pd df = pd.DataFrame([['abcdefghi','xyz'],
我是一名优秀的程序员,十分优秀!