如何将数据透视表转换回原始格式

时间:2019-04-01 22:03:10

标签: python pandas dataframe pivot-table

我已经从movielens数据集中创建了一个数据透视表。

如何将该数据透视表转换回原始数据集?

unstack()函数无法提供所需的输出。

数据透视表的图像:

The image of pivot table

转换后的数据集的外观图像:

The image of what the converted dataset should look like

#Read Movielens dataset
    df_ratings = pd.read_csv('/home/neera/DataSets/ml-latest-small/ratings.csv')

#Code used to create the pivot table
    user_movie_ratings = pd.pivot_table(ratings_title, index='userId', columns= 
    'movieId', values='rating')

0 个答案:

没有答案