Private
Public Access
1
0

first attempt compare

This commit is contained in:
2024-03-17 09:56:10 +01:00
parent 453cc79430
commit 0da6237e57
4 changed files with 45 additions and 25 deletions

View File

@@ -1273,7 +1273,7 @@ def getsmallrowdata_db(columns, ids=[], doclean=True, workstrokesonly=True, comp
data.append(df)
except (OSError, ArrowInvalid, IndexError):
pass
df['workoutid'] = id
try:
df = pd.concat(data, axis=0)
except ValueError: # pragma: no cover
@@ -1314,6 +1314,7 @@ def getsmallrowdata_db(columns, ids=[], doclean=True, workstrokesonly=True, comp
workstrokesonly=workstrokesonly)
data.dropna(axis=1, how='all', inplace=True)
data.dropna(axis=0, how='any', inplace=True)
print(data)
return data
except TypeError:
pass