mirror of
https://github.com/red-data-tools/YouPlot.git
synced 2025-12-15 18:45:12 +08:00
18 lines
291 B
Ruby
18 lines
291 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'enumerable/statistics'
|
|
|
|
module YouPlot
|
|
# plotting functions.
|
|
module Backends
|
|
module Processing
|
|
module_function
|
|
|
|
def count_values(arr, tally: true)
|
|
a = arr.value_counts
|
|
[a.keys, a.values]
|
|
end
|
|
end
|
|
end
|
|
end
|