type_count = df['类型'].value_counts(),type_count是什么类型的数据,如何将它转化为二维数组
时间: 2024-05-07 18:23:38 浏览: 100
如何在PHP中使用数组
`type_count` 是一个 Pandas Series 类型的数据,其中索引为每个类型,值为该类型在 DataFrame 中出现的次数。
要将它转化为二维数组,可以使用 `reset_index()` 方法将 Series 转化为 DataFrame,然后使用 `values` 属性将 DataFrame 转换为二维数组。
以下是代码示例:
```
type_count_df = type_count.reset_index()
type_count_array = type_count_df.values
```
其中,`type_count_df` 是一个包含两列(索引和值)的 DataFrame,`type_count_array` 是一个包含相同数据的二维数组。
阅读全文