Private
Public Access
1
0

hot fix user account delete

This commit is contained in:
Sander Roosendaal
2018-07-30 11:53:16 +02:00
parent bd67cab1f1
commit 7637522bd4
2 changed files with 9 additions and 4 deletions

View File

@@ -3697,9 +3697,12 @@ def interactive_multiple_compare_chart(ids,xparam,yparam,plottype='line',
datadf.dropna(axis=0,how='any',inplace=True)
nrworkouts = len(ids)
tseconds = datadf.ix[:,'time']
try:
tseconds = datadf.ix[:,'time']
except KeyError:
tseconds = datadf.ix[:,xparam]
yparamname = axlabels[yparam]
#datadf = datadf[datadf[yparam] > 0]