Skip to content

Instantly share code, notes, and snippets.

@kyoto-cheng
Created September 17, 2021 16:18
Show Gist options
  • Save kyoto-cheng/4228f98e6a54d425bf4526c129962283 to your computer and use it in GitHub Desktop.
Save kyoto-cheng/4228f98e6a54d425bf4526c129962283 to your computer and use it in GitHub Desktop.
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