当我当输入已有数据的关键字这个动作之后,会生成以关键字为索引的数据透视表。用Python写出代码
时间: 2023-03-13 16:26:20 浏览: 72
用Python实现数据的透视表的方法
我可以为您编写应用程序以生成以关键字为索引的数据透视表。 使用Python,您可以使用以下代码:import pandas as pd # read the data
data = pd.read_csv(‘data.csv’) # create a new dataframe with the keyword as the index
df = data.set_index(‘keyword’) # print the new dataframe
print(df)
阅读全文