在熊猫中组合输出?

如何解决在熊猫中组合输出?

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

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() 的返回类型是 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 个函数调用的结果。然后将打印合并的结果。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其他元素将获得点击?
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。)
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbcDriver发生异常。为什么?
这是用Java进行XML解析的最佳库。
Java的PriorityQueue的内置迭代器不会以任何特定顺序遍历数据结构。为什么?
如何在Java中聆听按键时移动图像。
Java“Program to an interface”。这是什么意思?