Private
Public Access
1
0

further fixes

This commit is contained in:
Sander Roosendaal
2020-04-08 16:25:19 +02:00
parent a5f83b98b9
commit b2e7da58c2

View File

@@ -3097,7 +3097,9 @@ def interactive_multiflex(datadf,xparam,yparam,groupby,extratitle='',
gr = groupname,
)
if xparam == 'cumdist':
res = make_cumvalues(datadf[xparam])
datadf[xparam] = res[0]
if xparam=='distance':
xaxmax = datadf[xparam].max()
xaxmin = datadf[xparam].min()
@@ -4781,7 +4783,7 @@ def interactive_multiple_compare_chart(ids,xparam,yparam,plottype='line',
group.sort_values(by='time',ascending=True,inplace=True)
print(xparam)
if xparam == 'cumdist':
res = make_cumvalues(group[xparam])
group[xparam] = res[0]