mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-23 09:21:37 +00:00
Make the almost-median deterministic when it rounds down to 0
Former-commit-id: 74892a0ac9
This commit is contained in:
parent
15667ea023
commit
ce5a91d732
@ -190,8 +190,9 @@ def merge_freqs(freq_dicts):
|
||||
missing_values += 1
|
||||
if missing_values > 2:
|
||||
continue
|
||||
|
||||
freqs.append(freq)
|
||||
freqs.append(0.)
|
||||
else:
|
||||
freqs.append(freq)
|
||||
|
||||
if freqs:
|
||||
median = statistics.median(freqs)
|
||||
@ -208,7 +209,7 @@ def merge_freqs(freq_dicts):
|
||||
return merged
|
||||
|
||||
|
||||
def write_wordlist(freqs, filename, cutoff=1e-9):
|
||||
def write_wordlist(freqs, filename, cutoff=1e-8):
|
||||
"""
|
||||
Write a dictionary of either raw counts or frequencies to a file of
|
||||
comma-separated values.
|
||||
|
Loading…
Reference in New Issue
Block a user