Rename Preprocess -> Preprocessing

This commit is contained in:
kojix2
2020-08-15 23:18:33 +09:00
parent c426378bda
commit d17143f7fa
3 changed files with 4 additions and 4 deletions

View File

@@ -247,7 +247,7 @@ module Uplot
while input = Kernel.gets(nil)
input.freeze
@raw_inputs << input
@data = Preprocess.input(input, @delimiter, @headers, @transpose)
@data = Preprocessing.input(input, @delimiter, @headers, @transpose)
case plot_type
when :bar, :barplot
barplot(@data)
@@ -278,7 +278,7 @@ module Uplot
headers = data.headers
series = data.series
if @count
series = Preprocess.count(series[0])
series = Preprocessing.count(series[0])
params.title = headers[0] if headers
end
params.title ||= headers[1] if headers