blob: 401d42e02ec9be58cbfcb2031c3f08bc9f773200 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from statistics import mean
from data2 import trials, fancy
print('\\tabrule Size & Interruption & Reclusive & Dead & Pits formed &\
Nearest Neighbor (avg) & Width (avg) & Depth (avg)\\cr\\tabrule')
for trial in trials:
print('& '.join(['$'+'\\times'.join([str(el) for el in trial.size])+'$',
names[trial.method], str(trial.recl), str(trial.dead),
str(len(trial.pits)), '%.2f' % mean(trial.nearest_neighbor()),
'%.2f' % mean([pit.diam for pit in trial.pits]),
'%.2f' % mean([pit.depth for pit in trial.pits])])+'\\cr\\tabrule')
|