如何结合计数图和比例图在朱莉娅?

2024-06-24 13:51:27 发布

您现在位置:Python中文网/ 问答频道 /正文

countmap可以整理列表中项目的计数:

import StatsBase: countmap, proportionmap, addcounts!
a = [1,2,3,4,1,2,2,3,1,2,5,7,4,8,4]
b = [1,2,5,3,1,6,1,6,1,2,6,2]
x, y = countmap(a), countmap(b)

[出来]:

^{pr2}$

我可以将原始列表中的计数添加到countmap字典中:

z = addcounts!(x, b)

[出来]:

Dict{Int64,Int64} with 8 entries:
  7 => 1
  4 => 3
  2 => 7
  3 => 3
  5 => 2
  8 => 1
  6 => 3
  1 => 7

但如果我已经有了一本数过的字典,我就不能把它们加起来:

addcounts!(x, y)

[错误]:

MethodError: no method matching addcounts!(::Dict{Int64,Int64}, ::Dict{Int64,Int64})
Closest candidates are:
  addcounts!{T}(::Dict{T,V}, ::AbstractArray{T,N}) at /Users/liling.tan/.julia/v0.5/StatsBase/src/counts.jl:230
  addcounts!{T,W}(::Dict{T,V}, ::AbstractArray{T,N}, ::StatsBase.WeightVec{W,Vec<:AbstractArray{T<:Real,1}}) at /Users/liling.tan/.julia/v0.5/StatsBase/src/counts.jl:237

这也没用:

x + y

[错误]:

MethodError: no method matching +(::Dict{Int64,Int64}, ::Dict{Int64,Int64})
Closest candidates are:
  +(::Any, ::Any, ::Any, ::Any...) at operators.jl:138

有没有办法合并多个countmap

例如,在Python中:

>>> from collections import Counter
>>> a = [1,2,3,4,1,2,2,3,1,2,5,7,4,8,4]
>>> b = [1,2,5,3,1,6,1,6,1,2,6,2]
>>> x, y = Counter(a), Counter(b)
>>> z = x + y
>>> z
Counter({1: 7, 2: 7, 3: 3, 4: 3, 6: 3, 5: 2, 7: 1, 8: 1})

Tags: import列表字典错误counteranydictat
2条回答

正如张军建议的那样数据结构.jl提供累加器类型(即计数器)。具体来说,要得到问题的结果:

using DataStructures

x,y = counter(a),counter(b)

push!(x,y)          # push! replaces addcounts!

现在x包含x和{}的和。在

基本上问题是要把两本词典相加。Julia标准库确实提供了这样一个功能。在

你可以试试DataStructures.jlmerge()函数大致相当于在Python中添加计数器。如果你不想要一个完整的包,用手来做应该不难。在

相关问题 更多 >