mirror of
https://github.com/adulau/napkin-text-analysis.git
synced 2024-11-24 10:57:07 +00:00
fix: [readable] fix bug where the first value was missed
This commit is contained in:
parent
9fb0cc8488
commit
04c3fc3cf7
1 changed files with 2 additions and 4 deletions
|
@ -157,11 +157,9 @@ for anal in analysis:
|
||||||
if args.o == "csv":
|
if args.o == "csv":
|
||||||
print("{},{},{}".format(anal,a[0],a[1]))
|
print("{},{},{}".format(anal,a[0],a[1]))
|
||||||
elif args.o == "readable":
|
elif args.o == "readable":
|
||||||
if previous_value is None:
|
if previous_value == a[1]:
|
||||||
previous_value = a[1]
|
|
||||||
elif previous_value == a[1]:
|
|
||||||
readable_table.append(["{}".format(a[0])])
|
readable_table.append(["{}".format(a[0])])
|
||||||
elif a[1] < previous_value:
|
elif previous_value is None or a[1] < previous_value:
|
||||||
previous_value = a[1]
|
previous_value = a[1]
|
||||||
readable_table.append(["{} occurences".format(a[1])])
|
readable_table.append(["{} occurences".format(a[1])])
|
||||||
readable_table.append(["{}".format(a[0])])
|
readable_table.append(["{}".format(a[0])])
|
||||||
|
|
Loading…
Reference in a new issue