date_history, data_history = data.iloc[:, :2].values.T 为什么要加转置
时间: 2024-01-18 17:03:13 浏览: 67
logistic_regression_data.txt-数据集
`data.iloc[:, :2]` 表示选择数据集中所有行和前两列作为新的数据集。由于 `values` 属性返回的是一个二维数组,因此我们需要通过 `.T` 进行转置,使得 `data_history` 和 `date_history` 分别表示数据集的第一列和第二列。如果不进行转置,则 `data_history` 和 `date_history` 分别表示数据集中的第一个和第二个样本。
阅读全文