Skip to content

Instantly share code, notes, and snippets.

@PranjalDureja0002
Created March 15, 2021 09:27
Show Gist options
  • Save PranjalDureja0002/ac7acfba4190b1cc912d88c0534bb21c to your computer and use it in GitHub Desktop.
Save PranjalDureja0002/ac7acfba4190b1cc912d88c0534bb21c to your computer and use it in GitHub Desktop.
data
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