Python|熊猫 Series.tolist()
Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
Pandas tolist()
用于将系列转换为列表。最初系列是 pandas.core.series.Series 类型并应用 tolist() 方法,它被转换为列表数据类型。
Syntax: Series.tolist()
Return type: Converted series into List
要下载以下示例中使用的数据集,请单击此处。
在以下示例中,使用的数据框包含一些 NBA 球员的数据。下面附上任何操作之前的数据帧图像。
例子:
在本例中,Name 列的数据类型存储在一个变量中。之后使用 tolist() 方法对其进行转换,并再次存储和打印数据类型。
# importing pandas module
import pandas as pd
# importing regex module
import re
# making data frame
data = pd.read_csv("https://media.geeksforgeeks.org/wp-content/uploads/nba.csv")
# removing null values to avoid errors
data.dropna(inplace = True)
# storing dtype before operation
dtype_before = type(data["Salary"])
# converting to list
salary_list = data["Salary"].tolist()
# storing dtype after operation
dtype_after = type(salary_list)
# printing dtype
print("Data type before converting = {}\nData type after converting = {}".format(dtype_before, dtype_after))
# displaying list
salary_list
输出:
如输出图像所示,数据类型已从 Series 转换为 List。 Salary_list 的输出是列表格式。