【问题标题】:Combining output in pandas?结合熊猫的输出?
【发布时间】:2021-04-07 21:59:02
【问题描述】:

我有一个我一直在研究的电影推荐系统,目前它正在打印两组不同的输出,因为我有两种不同类型的推荐引擎。代码是这样的:

while True:
    user_input3 = input('Please enter movie title: ')
    if user_input3 == 'done':
        break
    try:
        print(' ')
        print(get_input_movie(user_input3))
        print(get_input_movie(user_input3, cosine_sim1))
        # print(get_input_movie(user_input3), get_input_movie(user_input3,cosine_sim1))
        print(' ')
    except KeyError or ValueError:
        print('Check your movie title spelling, capitalization and try again.')
        print(' ')
        continue

示例输出如下所示。

Please enter movie title: Casino

34652       The Under-Gifted
28155             The Plague
12738    The Incredible Hulk
41823      The Ugly Duckling
44976           12 Feet Deep
Name: Title, dtype: object
1177        GoodFellas
1192       Raging Bull
25900    The Big Shave
109        Taxi Driver
7617      Mean Streets
Name: Title, dtype: object

我怎样才能使它结合答案?所以它看起来像这样:

Please enter movie title: Casino
 
34652       The Under-Gifted
28155             The Plague
12738    The Incredible Hulk
41823      The Ugly Duckling
44976           12 Feet Deep
1177              GoodFellas
1192             Raging Bull
25900          The Big Shave
109              Taxi Driver
7617            Mean Streets

【问题讨论】:

  • 分享来自get_input_movie(user_input3)return stmt。看起来你正在发送两个系列,所以它分别打印它们
  • 您能解释一下吗?或者告诉我你的意思。谢谢

标签: python pandas dataframe recommender-systems


【解决方案1】:

如果get_input_movie()的返回类型是Pandas DataFrame或者Pandas Series,可以试试:

替换以下两行:

print(get_input_movie(user_input3))
print(get_input_movie(user_input3, cosine_sim1))

使用Series.append()DataFrame.append() 如下:

print(get_input_movie(user_input3).append(get_input_movie(user_input3, cosine_sim1)))

在这里,我们在打印之前附加了 2 个函数调用的结果。然后将打印合并的结果。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2018-08-25
    • 1970-01-01
    • 1970-01-01
    • 2017-05-14
    • 1970-01-01
    • 2020-09-07
    • 1970-01-01
    • 2023-02-22
    相关资源
    最近更新 更多