Fix the bug of step features: concat two dataframes with different index datatype

pull/95/head
Meng Li 2020-06-24 13:02:12 -04:00
parent 8aa25144f0
commit fd3aedf634
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import pandas as pd
import numpy as np
from fitbit_step.fitbit_step_base import base_fitbit_step_features
step_data = pd.read_csv(snakemake.input["step_data"], parse_dates=["local_date_time"])
step_data = pd.read_csv(snakemake.input["step_data"], parse_dates=["local_date_time", "local_date"])
day_segment = snakemake.params["day_segment"]
threshold_active_bout = snakemake.params["threshold_active_bout"]
include_zero_step_rows = snakemake.params["include_zero_step_rows"]