Outils pour utilisateurs

Outils du site


python:first_course_statistics

Ceci est une ancienne révision du document !


Lessons

Eruptions of the "Old Faithful" geyser (p.5)

Histogram (p.5)

# fake code – to be deleted
import csv
filename = 'ch02-data.csv'
f = open(filename)
data = []
reader = csv.reader(f)
header = reader.next()
data = [row for row in reader]
for datarow in data:
    print datarow

International adoption rates (p.13)

python/first_course_statistics.1475910678.txt.gz · Dernière modification: 2016/10/08 09:11 par Francesco Beretta