gpt4 book ai didi

dataframe - 如何获得 Julia 数据框中最长的列表?

转载 作者:行者123 更新时间:2023-12-04 14:46:20 27 4
gpt4 key购买 nike

给出这样的数据框:

dataframe = DataFrame(col1 = rand(3), 
col2 = [['a'],['a','b','c'],['a','c']])

如何获取col2中最长的列表?

我试过:

dataframe[partialsortperm(dataframe.col2, 1, rev=true), :]

但它返回 ['a','c'] 而不是 ['a','b','c]

最佳答案

[编辑] 实际上,你想要 argmax:

julia> argmax(length, dataframe.col2)
3-element Vector{Char}:
'a': ASCII/Unicode U+0061 (category Ll: Letter, lowercase)
'b': ASCII/Unicode U+0062 (category Ll: Letter, lowercase)
'c': ASCII/Unicode U+0063 (category Ll: Letter, lowercase)

[下面的预编辑答案:]

我想你想使用findmax:

julia> findmax(length, dataframe.col2) # returns (max length, index)
(3, 2)

julia> dataframe.col2[findmax(length, dataframe.col2)[2]]
3-element Vector{Char}:
'a': ASCII/Unicode U+0061 (category Ll: Letter, lowercase)
'b': ASCII/Unicode U+0062 (category Ll: Letter, lowercase)
'c': ASCII/Unicode U+0063 (category Ll: Letter, lowercase)

关于dataframe - 如何获得 Julia 数据框中最长的列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69983073/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com