Skip to content

Instantly share code, notes, and snippets.

View shubham-singh-ss's full-sized avatar

Shubham Singh shubham-singh-ss

View GitHub Profile
sns.jointplot(x="avg_training_score", y="age", data=df2);
sns.distplot(df2.age, kde=False, rug = True)
sns.distplot(df2.age)
sns.catplot(x="education", y="avg_training_score", hue="is_promoted",
col="gender", aspect=.9,
kind="swarm", data=df2);
sns.catplot(x="education", y="avg_training_score", hue = "is_promoted", kind = "point", data=df2)
sns.catplot(x="education", y="avg_training_score", hue = "is_promoted", kind = "bar", data=df2)
sns.catplot(x="education", y="avg_training_score", hue = "is_promoted", kind = "violin", split = True, data=df2)
sns.catplot(x="education", y="avg_training_score", hue = "is_promoted", kind = "violin", data=df2)
sns.catplot(x="education", y="avg_training_score", hue = "is_promoted", kind = "box", data=df2)
sns.catplot(x="education", y="avg_training_score", kind = "box", data=df2)