Skip to content

Instantly share code, notes, and snippets.

@sazio
Created August 28, 2020 14:20
Show Gist options
  • Save sazio/bd952b6a348c79659f4b4bbea14c91ae to your computer and use it in GitHub Desktop.
Save sazio/bd952b6a348c79659f4b4bbea14c91ae to your computer and use it in GitHub Desktop.
fig, ax = plt.subplots(1,6, figsize=(22, 3))
d = sns.distplot(meta_pd["video_fps"], ax=ax[0])
d = sns.distplot(meta_pd["video_duration"], ax=ax[1])
d = sns.distplot(meta_pd["video_width"], ax=ax[2])
d = sns.distplot(meta_pd["video_height"], ax=ax[3])
d = sns.distplot(meta_pd["video_nb_frames"], ax=ax[4])
d = sns.distplot(meta_pd["video_bit_rate"], ax=ax[5])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment