Created
March 15, 2021 09:27
-
-
Save PranjalDureja0002/ac7acfba4190b1cc912d88c0534bb21c 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
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