2016-11-24 9 views
1

간단한 팬더 데이터 프레임에서 기능 (tsfresh.extract_features)을 추출하려고합니다. 기능을 실행하고 인쇄 할 때마다 계산 된 모든 기능을 0 또는 NaN으로 가져옵니다. 나는 문서를 꽤 많이 읽으려고 시도했지만 그 주위를 감싸고있는 것처럼 보일 수 없다. 어떤 도움에 감사드립니다간단한 팬더 데이터 프레임에서 tsfresh 사용

d = {'one':pd.Series(np.random.randn(10)), 
    'two':pd.Series(np.random.randn(10))} 
df = pd.DataFrame(d) 
print(df) 
# 
features = extract_features(df, column_id='one') 
print(features) 

:

여기에 코드입니다.

감사

+0

tsfresh.extract_features (DF = '하나'COLUMN_ID)를 살펴 나를 위해 작동 되세요 –

답변

관련 문제