Skip to content

Instantly share code, notes, and snippets.

@konverner
Created July 31, 2022 08:45
Show Gist options
  • Save konverner/0b7e50002193741fa395361870a75bfc to your computer and use it in GitHub Desktop.
Save konverner/0b7e50002193741fa395361870a75bfc to your computer and use it in GitHub Desktop.
3d scatter with matplotlib.pyplot
fig = plt.figure(figsize=(4,4))
ax = fig.add_subplot(111, projection='3d')
ax.scatter(df['Gene 1'], df['Gene 2'], df['Gene 3'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment