gpt4 book ai didi

python - 如何使用正则表达式或索引从非日期列派生日期?

转载 作者:行者123 更新时间:2023-12-01 06:59:44 25 4
gpt4 key购买 nike

我有一个数据框和字典,如下所示

df = pd.DataFrame({
'subject_id':[1,2,3,4,5],
'age':[42,56,75,48,39],
'date_visit':['1/1/2020','3/3/2200','13/11/2100','24/05/2198','30/03/2071'],
'a11fever':['Yes','No','Yes','Yes','No'],
'a12diagage':[36,np.nan,np.nan,40,np.nan],
'a12diagyr':[np.nan,np.nan,2091,np.nan,np.nan],
'a12diagyrago':[6,np.nan,9,np.nan,np.nan],
'a20cough':['Yes','No','No','Yes','No'],
'a21cough':[np.nan,'Yes',np.nan,np.nan,np.nan],
'a22agetold':[37,np.nan,np.nan,46,np.nan],
'a22yrsago':[np.nan,6,np.nan,2,np.nan],
'a22yrtold':[np.nan,2194,np.nan,np.nan,np.nan]

})
df['date_visit'] = pd.to_datetime(df['date_visit'])
disease_dict = {'a11fever' : 'fever', 'a20cough' : 'cough','a21cough':'cough'}

此数据框包含有关患者医疗状况和诊断日期的信息

但正如您所看到的,诊断日期无法直接获得,我们必须根据包含 age 等关键字的列来推导它。 , yr , ago , diag它出现在条件列接下来的 5-6 列中(例如: a11fever )。查找此条件列后的接下来 5 列,您将能够获取导出日期所需的信息。其他条件类似,如 cough

我希望我的输出如下所示

enter image description here

我尝试了类似下面的方法,但没有帮助

df = df[(df['a11fever'] =='Yes') | (df['a20cough'] =='Yes') | (df['a21cough'] =='Yes')]  
# we filter by `Yes` above because we only nned to get dates for people who had medical condition (`fever`,`cough`)
df.fillna(0,inplace=True)
df['diag_date'] = df["date_visit"] - pd.DateOffset(years=df.filter('age'|'yr'|'ago')) # doesn't help throws error. need to use regex here to select non-na values any of other columns
pd.wide_to_long(df, stubnames=['condition', 'diag_date'], i='subject_id', j='grp').sort_index(level=0)
df.melt('subject_id', value_name='valuestring').sort_values('subject_id')

请注意,我事先知道疾病的列名称(请参阅字典)。我不知道的是实际的列名称,我可以从中获取导出日期所需的信息。但我知道它包含像 age 这样的关键字, ago , yr , diag

diag_date减去 derived date 即可得到来自date_vist专栏。

规则截图

enter image description here

例如:subject_id = 1 1/1/2020 就诊于医院因发烧,他被诊断时年龄36 ( a12diagage ) 或 6几年前(a12diagyrago)。我们知道他当前的年龄和 date_visit,因此我们可以选择从任何给出 1/1/2014 的列中减去。

如您所见,我无法找到如何根据正则表达式选择列并减去它

最佳答案

用途:

#get of columns with Yes at least one value
mask = df[list(disease_dict.keys())].eq('Yes')
#assign mask back
df[list(disease_dict.keys())] = mask
#rename columns names by dict
df = df.rename(columns=disease_dict).max(axis=1, level=0)
#filter out False rows
df = df[mask.any(axis=1)]
#convert some columns to index for get only years and condition columns
df = df.set_index(['subject_id','age','date_visit'])

#extract columns names - removing aDD values
s = df.columns.to_series()
df.columns = s.str.extract('(yrago|yrsago)', expand=False).fillna(s.str.extract('(age|yr)', expand=False)).fillna(s)

#replace True in condition columns to column names
ill = set(disease_dict.values())
df.loc[:, ill] = np.where(df[ill].values, np.array(list(ill)), None)

#replace columns names to condition
df = df.rename(columns = dict.fromkeys(ill, 'condition'))
<小时/>
#create MultiIndex - only necessary condition columns are first per groups
cols = np.cumsum(df.columns == 'condition')
df.columns = [df.columns, cols]
#reshape by stack and convert MultiIndex to columns
df = df.stack().rename(columns={'age':'age_ill'}).reset_index().drop('level_3', axis=1)
#subtract ages
df['age_ill'] = df['age'].sub(df['age_ill'])
#priority yrago so yrago is filling missing values by age_ill
df['yrago'] = df['yrago'].fillna(df['yrsago']).fillna(df['age_ill']).fillna(0).astype(int)
df = df.drop(['yrsago','age_ill'], axis=1)

#subtract years
df['diag_date1'] = df.apply(lambda x: x["date_visit"] - pd.DateOffset(years=x['yrago']), axis=1)
#replace years
mask1 = df['yr'].notna()
df.loc[mask1, 'diag_date'] = df[mask1].apply(lambda x: x["date_visit"].replace(year=int(x['yr'])), axis=1)
#because priority yr then fillna diag_date by diag_date1
df['diag_date'] = df['diag_date'].fillna(df['diag_date1'])

df = df.drop(['diag_date1','age','date_visit','yr','yrago'], axis=1)
<小时/>
print (df)
subject_id condition diag_date
0 1 fever 2014-01-01
1 1 cough 2015-01-01
2 2 cough 2194-03-03
3 3 fever 2091-11-13
4 4 fever 2190-05-24
5 4 cough 2196-05-24

关于python - 如何使用正则表达式或索引从非日期列派生日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58687209/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com