python Python Pandas中字符串的GROUP BY

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python Pandas中字符串的GROUP BY相关的知识,希望对你有一定的参考价值。

from pandas import DataFrame as df
import pandas as pd

lics = pd.read_csv("/Users/Mah/Temp/csvdb/license-union-norownum.csv")

licsgr = lics.groupby('gem')['license'].apply(list)
licsgr.columns = ['gem', 'licenses']

# But how do we convert Series to DataFrame in Pandas?

以上是关于python Python Pandas中字符串的GROUP BY的主要内容,如果未能解决你的问题,请参考以下文章

pandas python 怎么删除表格中的某一行

如何使用字符串列表在 Python 3 中搜索 pandas 数据框

在 pandas/python 中,读取存储为字符串的数组

使用 python 中 pandas 的 read_excel 函数将日期保留为字符串

Python/Pandas 如何在字符串中的每个数字后加上逗号

尝试在 Python / pandas 中使用正则表达式获取子字符串