Skip to content

Instantly share code, notes, and snippets.

@ShrashtiSinghal
Created August 6, 2020 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ShrashtiSinghal/967af09707c93ef6f54187df81aa4531 to your computer and use it in GitHub Desktop.
Save ShrashtiSinghal/967af09707c93ef6f54187df81aa4531 to your computer and use it in GitHub Desktop.
#Visualze Scale of the data
import seaborn as sns
import matplotlib.pyplot as plt
fig,ax = plt.subplots(figsize=(15, 7))
ax.set_xscale("log")
for k,v in data.items():
sns.boxplot(data=df, orient='h')
plt.grid()
plt.tight_layout(pad=0.5, w_pad=0.7, h_pad=5.0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment