Remove Processing module

This commit is contained in:
kojix2
2021-05-27 23:18:08 +09:00
parent 86c0d8ed53
commit 607e490d7a
3 changed files with 1 additions and 36 deletions

View File

@@ -1,17 +0,0 @@
# 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