我遵循tsfresh python软件包(pip install tsfresh)的“ Quick Start”代码,如下所示。

from tsfresh.examples.robot_execution_failures import download_robot_execution_failures, \
    load_robot_execution_failures
download_robot_execution_failures()
timeseries, y = load_robot_execution_failures()
from tsfresh import extract_features
extracted_features = extract_features(timeseries, column_id="id", column_sort="time")

import pandas as pd
extracted_features.to_csv("file.csv")


extracted_features是熊猫数据框。如图所示,当我将其写入id文件时,它具有一个csv列。

python - 如何从 Pandas 的数据框中获取 key-LMLPHP

但是,当我尝试以extracted_features[["id"]]检索它时,出现了错误KeyError: "['id'] not in index"。有没有办法解决这个问题。

如果需要,我很乐意提供更多详细信息。

最佳答案

可能是id是您的索引。检查extracted_features.index

07-24 19:19
查看更多