我有问题。我将数据框1命名为“ df”:
我将数据框2命名为“ dfP1”:
我想比较列“ dfP1”中的“ Campo a Validar”列中存在的唯一行与“ df”中的列的存在(如果存在一个巧合),它计算列中匹配的空值的数量。然后,空数将在数据帧df中插入新的列名“ Numeros_de_nulos”,但仅在第0行(索引0)中插入。
这是尝试过的事情:
#Validacion de Regla 1
if pd.isnull(df["Nº Línea Cliente"]).values.ravel().sum() > 0:
nulos = pd.isnull(df["Nº Línea Cliente"]).values.ravel().sum()
print("Hay {} valores nulos".format(nulos))
dfP1['Numeros_de_Nulos'] = None
else:
print ("No hay valores nulos")
dfP1.head()
答案 0 :(得分:0)
我想我可能会有答案。
# Count number of NULL values in column 'Nº Línea Cliente'
nulos = df['Nº Línea Cliente'].isnull().sum()
# If nulos is greater than zero
if nulos > 0:
# Create a column of nulls
dfP1['Numeros_de_Nulos'] = None
# dfP1['Numeros_de_Nulos'] = 0
# dfP1['Numeros_de_Nulos'] = np.NaN
# Use DataFrame.loc[<index>, <column name>] to set a new value
dfP1.loc[0, 'Numeros_de_Nulos'] = nulos
输出:
ID_val Tipo_Validacion Campo_a_Validar Numeros_de_Nulos
0 1 1 Nº Línea Cliente 1
1 2 2 Nº Línea Cliente None
2 3 3 Nº Línea Cliente None
3 4 4 Nº Línea Cliente None
4 5 1 TIPO DE GARANTIA 1 None
*有关pandas.DataFrame.loc()
here的更多信息。
答案 1 :(得分:0)
确定您的需求有些挑战,但这可能接近您的理想解决方案。
import pandas as pd
from numpy import NaN
# Assuming that these dictionaries accurately reflect
# your DataFrames's contents, then the
# following might work:
_df = {
"c1": [1.0, 3.0, 5.0, 7.0],
"c2": [1.0, 3.0, 5.0, 7.0],
"c3": [1.0, 3.0, 5.0, 7.0],
"c4": [1.0, 3.0, 5.0, 7.0],
"Nº Línea Cliente": [
"Hay algo",
"Hay algo",
"Hay algo",
NaN],
"c6": [1.0, 3.0, 5.0, 7.0],
"c7": [1.0, 3.0, 5.0, 7.0],
"c8": [1.0, 3.0, 5.0, 7.0],
"c9": [1.0, 3.0, 5.0, 7.0],
"c10": [1.0, 3.0, 5.0, 7.0],
}
Campo_a_Validar = [
"Nº Línea Cliente"
for campo in range(4)]
Campo_a_Validar.append("TIPO DE GARANTIA 1")
_dfP1 = {
"ID_Val": [1,2,3,4,5],
"Tipo_Validación": [1, 2, 3, 4, 1],
"Campo_a_Validar": Campo_a_Validar,
}
# Initializing the DataFrames
df = pd.DataFrame(_df)
dfP1 = pd.DataFrame(_dfP1)
def analizar_para_nulos(_df_, _dfP1_):
try:
contar_nulos = lambda DF, ColName: DF.groupby([ColName])[ColName].nunique()
nulos_de_df = contar_nulos(_df_, "Nº Línea Cliente")
nulos_de_dfP1 = contar_nulos(_dfP1_, "Campo_a_Validar")
assert(
nulos_de_df.values[0] == nulos_de_dfP1.values[0]
)
num_nulos = nulos_de_df
return num_nulos.values[0]
except AssertionError:
return 0
# Check whether the number of unique rows is
# equal to the number of unique rows in
# the other table
is_coincidence = analizar_para_nulos(df, dfP1)
if is_coincidence:
base = [is_coincidence]
base.extend([""
for position in range(len(df.c1) - 1)])
num_columns = len(df.T)
df.insert(
loc=num_columns,
column="Numeros_de_Nulos",
value=base
)
print(df)
else:
print(df)
输出:
c1 c2 c3 c4 Nº Línea Cliente c6 c7 c8 c9 c10 Numeros_de_Nulos
0 1.0 1.0 1.0 1.0 Hay algo 1.0 1.0 1.0 1.0 1.0 1
1 3.0 3.0 3.0 3.0 Hay algo 3.0 3.0 3.0 3.0 3.0
2 5.0 5.0 5.0 5.0 Hay algo 5.0 5.0 5.0 5.0 5.0
3 7.0 7.0 7.0 7.0 NaN 7.0 7.0 7.0 7.0 7.0