Created
March 15, 2021 09:19
-
-
Save PranjalDureja0002/eeed3f98ae799352f5584050b07cb33d to your computer and use it in GitHub Desktop.
data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
patient_data_io = pd.merge(train_d_inpatient, train_d_outpatient, left_on = [ col for col in train_d_outpatient.columns if col in train_d_inpatient.columns], \ | |
right_on = [ col for col in train_d_outpatient.columns if col in train_d_inpatient.columns], how = 'outer') | |
patient_data = pd.merge(patient_data_io,train_d_beneficiary,how='inner',on='BeneID' ).\ | |
merge(label_d_data,how='outer',on='Provider') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment