Private
Public Access
1
0

changed naming of rower ranking to percentile

This commit is contained in:
Sander Roosendaal
2017-12-14 11:57:40 +01:00
parent 50c578b8af
commit 6b7207321c
2 changed files with 9 additions and 11 deletions

View File

@@ -1332,19 +1332,19 @@ def interactive_cpchart(rower,thedistances,thesecs,theavpower,
color='Maroon',line_dash='dotted')
plot.line('duration','fitpowerexcellent',source=sourcecomplex,
legend="Excellent",
legend="90% percentile",
color='Purple',line_dash='dotted')
plot.line('duration','fitpowergood',source=sourcecomplex,
legend="Good",
legend="75% percentile",
color='Olive',line_dash='dotted')
plot.line('duration','fitpowerfair',source=sourcecomplex,
legend="Fair",
legend="50% percentile",
color='Gray',line_dash='dotted')
plot.line('duration','fitpoweraverage',source=sourcecomplex,
legend="Average",
legend="25% percentile",
color='SkyBlue',line_dash='dotted')