fixed a typo in bench.py
This commit is contained in:
parent
d32e9bb315
commit
321edeaabe
|
@ -38,7 +38,7 @@ def load_data_row(x, time_series):
|
||||||
return x
|
return x
|
||||||
|
|
||||||
def load_data_column(x, time_series):
|
def load_data_column(x, time_series):
|
||||||
"""Store one time series per raw"""
|
"""Store one time series per column"""
|
||||||
for column, ts in enumerate(time_series):
|
for column, ts in enumerate(time_series):
|
||||||
x[:, column] = ts
|
x[:, column] = ts
|
||||||
return x
|
return x
|
||||||
|
|
Loading…
Reference in a new issue