Skip to content

Instantly share code, notes, and snippets.

@bKNN
Created December 18, 2019 10:58
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 bKNN/cc129f8af84febfa27adca5ce7287275 to your computer and use it in GitHub Desktop.
Save bKNN/cc129f8af84febfa27adca5ce7287275 to your computer and use it in GitHub Desktop.
DATAVIZ - Venn diagram for usefull/helpfull pages
from matplotlib import pyplot as plt
import numpy as np
from matplotlib_venn import venn3, venn3_circles
plt.figure(figsize=(12,12))
plt.title("Pages Actives et Inactives")
v = venn3(subsets=(251, 8, 49, 1,226,3,634), set_labels = ('URL trouvées au crawl', 'URL trouvées dans les sitemaps', 'URL trouvées dans GA + GSC'))
c=venn3_circles(subsets = (251, 8, 49, 1,226,3,634), linestyle='dashed', linewidth=1, color="grey")
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment