Created
September 17, 2021 16:18
-
-
Save kyoto-cheng/4228f98e6a54d425bf4526c129962283 to your computer and use it in GitHub Desktop.
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
sns.violinplot(x='Credit_Limit', y='Income_Category', data=data, hue="Attrition_Flag", split=True, palette="Set3", scale="width", height=4, aspect=.7).set_title('Original Data') | |
sns.violinplot(x='Credit_Limit', y='Income_Category', data=new_data_model_CTGAN, hue="Attrition_Flag", split=True, palette="Set3", scale="width", height=4, aspect=.7).set_title('model_CTGAN') | |
sns.violinplot(x='Credit_Limit', y='Income_Category', data=new_data_model_CopulaGAN, hue="Attrition_Flag", split=True, palette="Set3", scale="width", height=4, aspect=.7).set_title('model_CopulaGAN') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment