Skip to content

Instantly share code, notes, and snippets.

@Rahuls66
Created July 26, 2021 17:28
Show Gist options
  • Save Rahuls66/d860f93c17e90506a255fd88f074e334 to your computer and use it in GitHub Desktop.
Save Rahuls66/d860f93c17e90506a255fd88f074e334 to your computer and use it in GitHub Desktop.
# !pip install mplcyberpunk
import matplotlib.pyplot as plt
import mplcyberpunk
plt.style.use('cyberpunk')
plt.figure(figsize = (20,8))
plt.plot([1,4,6,7,4,1], marker = 'o')
plt.plot([5,3,5,8,9,2], marker = 'o')
plt.plot([3,5,8,3,4,9], marker = 'o')
plt.xticks(size = 16)
plt.yticks(size = 16)
mplcyberpunk.add_glow_effects()
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment