Skip to content

Instantly share code, notes, and snippets.

@PranjalDureja0002
Created March 2, 2021 11:02
Show Gist options
  • Save PranjalDureja0002/3ad4fc9f53f66f4566baa3a73cb891eb to your computer and use it in GitHub Desktop.
Save PranjalDureja0002/3ad4fc9f53f66f4566baa3a73cb891eb to your computer and use it in GitHub Desktop.
eda
plt.figure(figsize=(15, 9))
sns.pointplot(x = outpatients_.physician_count, y = outpatients_.id_Count,hue=outpatients_.PotentialFraud)
plt.suptitle('Physician_attended vs Beneficiaries_count\n')
sns.pointplot(x = inpatients_.physician_count, y = inpatients_.id_Count,hue=inpatients_.PotentialFraud)
plt.suptitle('Physician_attended vs Beneficiaries_count\n')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment