From bdc22ed0a766429a5c5ecee521075b0ef82c1019 Mon Sep 17 00:00:00 2001
From: encinass1u <jessica-maria.encinas-silvas4@etu.univ-lorraine.fr>
Date: Tue, 17 May 2022 16:02:49 +0000
Subject: [PATCH] Delete Show_code.py

---
 Show_code.py | 18 ------------------
 1 file changed, 18 deletions(-)
 delete mode 100644 Show_code.py

diff --git a/Show_code.py b/Show_code.py
deleted file mode 100644
index de07a22..0000000
--- a/Show_code.py
+++ /dev/null
@@ -1,18 +0,0 @@
-import pickle 
-import matplotlib.pyplot as plt
-import os
-
-
-with open('Gts_Surface_T.cvs', 'rb') as csv_file:
-    Gts = pickle.load(csv_file)
-    
-Plot = plt.imshow(Gts, cmap="bone", norm = None, aspect ='equal' )
-plt.show()
-
-L= 15
-Sample= Gts[0:L, 0:L]
-
-with open('Gts_Sample.cvs', 'wb') as cvs_file:
-    pickle.dump(Sample,cvs_file)
-Plot_sample = plt.imshow(Sample, cmap="bone", norm = None, aspect ='equal' )
-plt.show()
\ No newline at end of file
-- 
GitLab