Tableau une seul courbe

This commit is contained in:
theo.canaud 2022-06-13 15:22:50 +02:00
parent c0e70cec4e
commit 8906063068
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View file

@ -9,14 +9,14 @@ import sys
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: UTF-8 -*- # -*- coding: UTF-8 -*-
csv_reader = csv.reader(open('rawData.csv')) #Ouvre le fichier .csv csv_reader1 = csv.reader(open('rawData.csv')) #Ouvre le fichier .csv
bigx = float(-sys.maxsize-1) bigx = float(-sys.maxsize-1)
bigy = float(-sys.maxsize-1) bigy = float(-sys.maxsize-1)
smallx = float(sys.maxsize) smallx = float(sys.maxsize)
smally = float(sys.maxsize) smally = float(sys.maxsize)
capteurs = [] capteurs = []
for ligne in csv_reader: for ligne in csv_reader1:
capteurs.append(ligne) capteurs.append(ligne)
if float(ligne[0]) > bigx: if float(ligne[0]) > bigx:
bigx = float(ligne[0]) bigx = float(ligne[0])