마지막으로 나머지 레코드에서 필요한 데이터에 접근하고, 통계 값을 계산해서 출력해 보자.
import statistics
countParticipants = [int(row[countParticipantsIndex]) for row in data[1:]]
print(statistics.mean(countParticipants),
statistics.stdev(countParticipants))
>>>
17.661016949152543 43.27973735299687
csv와 statistics 모듈은 ‘쉽지만 수준이 높지는 않은’ 도구다. ‘6장. 데이터 시리즈와 프레임 다루기’에서 pandas 데이터 프레임으로 몇 개의 열을 분석하는 단순한 수준을 넘어선 프로젝트를 분석해 볼 것이다.