extcsv 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/gemspec +21 -0
- data/lib/extcsv.rb +733 -0
- data/lib/lsmodel.rb +289 -0
- data/rakefile +134 -0
- data/test/data/file00.txt +116 -0
- data/test/data/file01.txt +121 -0
- data/test/data/file02.txt +90 -0
- data/test/data/file03.txt +90 -0
- data/test/data/file04.csv +31 -0
- data/test/test_extcsv.rb +491 -0
- data/test/test_lsmodel.rb +150 -0
- metadata +62 -0
data/lib/lsmodel.rb
ADDED
@@ -0,0 +1,289 @@
|
|
1
|
+
require 'matrix'
|
2
|
+
require 'mathn'
|
3
|
+
|
4
|
+
# Modelling funtionality with the least square mathod
|
5
|
+
module LSModel
|
6
|
+
MINIMAL_VARIATION_SIZE = 8
|
7
|
+
|
8
|
+
# Function for simple computation of the slope of y over x, i.e. y =
|
9
|
+
# ax, x is input and y is the measured value. Both should behave
|
10
|
+
# like arrays.
|
11
|
+
# This is the direct version of what the abstract modelling method would do
|
12
|
+
def LSModel.linear_model(x,y)
|
13
|
+
return nil if x.size != y.size
|
14
|
+
|
15
|
+
# recursive to_f for x and y
|
16
|
+
params = [x, y]
|
17
|
+
params.each_with_index {|param,index|
|
18
|
+
params[index] = param.each_with_index {|v,i| param[i] = v.to_f}
|
19
|
+
}
|
20
|
+
|
21
|
+
s = nil
|
22
|
+
x_V = Vector.elements(x)
|
23
|
+
y_V = Vector.elements(y)
|
24
|
+
s = x_V.inner_product(y_V)/x_V.inner_product(x_V)
|
25
|
+
|
26
|
+
r, = stability_index("linear",s,y,x)
|
27
|
+
|
28
|
+
[s, r]
|
29
|
+
end
|
30
|
+
|
31
|
+
# Method for affine regression y = ax + b
|
32
|
+
# This is the direct version of what the abstract modelling method would do
|
33
|
+
def LSModel.affine_model(x,y)
|
34
|
+
return nil if x.size != y.size
|
35
|
+
n = x.size.to_f
|
36
|
+
params = [x, y]
|
37
|
+
params.each_with_index {|param,index|
|
38
|
+
params[index] = param.each_with_index {|v,i| param[i] = v.to_f}
|
39
|
+
}
|
40
|
+
x_V = Vector.elements(x)
|
41
|
+
y_V = Vector.elements(y)
|
42
|
+
x_S = x.inject {|sum,x_i| sum += x_i}
|
43
|
+
y_S = y.inject {|sum,y_i| sum += y_i}
|
44
|
+
# gradient
|
45
|
+
a = (n*x_V.inner_product(y_V) - x_S*y_S)/(n*x_V.inner_product(x_V) - x_S*x_S)
|
46
|
+
# offset
|
47
|
+
b = (y_S - a*x_S)/n
|
48
|
+
# fitnes
|
49
|
+
r, = stability_index("affine",[a,b],y,x)
|
50
|
+
[a,b,r]
|
51
|
+
end
|
52
|
+
|
53
|
+
|
54
|
+
# mode abstract Modelling: multiple (but same) dimesions are allowed in
|
55
|
+
# input/output data arrays (ins, out)
|
56
|
+
# model should have the form:
|
57
|
+
# <tt>"[1.0,input[0][i],input[1][i]]"</tt> for affine model
|
58
|
+
#
|
59
|
+
# !!EXPERIMENTAL!! Better use abstract_model
|
60
|
+
def LSModel.abstract_modelD(ins, outs, model)
|
61
|
+
###########################################################################
|
62
|
+
# Calculation of the coefficients for the given model
|
63
|
+
#
|
64
|
+
# check for data quality
|
65
|
+
# 1. Is there enough data?
|
66
|
+
if ins[0].size < 2
|
67
|
+
puts "To few datasets!"
|
68
|
+
raise
|
69
|
+
end
|
70
|
+
# 2. Has any dataset the same size?
|
71
|
+
sizes = []
|
72
|
+
[ins,outs].each {|datas| datas.each {|dataset| sizes << dataset.size}}
|
73
|
+
if sizes.uniq.size != 1
|
74
|
+
puts "Use datasets with same number of values!"
|
75
|
+
raise
|
76
|
+
end
|
77
|
+
# 3. Convert everything from String to Float
|
78
|
+
[ins,outs].each {|datas| datas.collect!{|data| data.collect {|data_| data_.to_f}}}
|
79
|
+
# 4. preprocess the model
|
80
|
+
model = convertModelInputString(model)
|
81
|
+
# Create input/output matrices
|
82
|
+
input = Matrix.columns(ins)
|
83
|
+
output = Matrix.columns(outs)
|
84
|
+
|
85
|
+
# Create the modelling Matrix
|
86
|
+
rows = []
|
87
|
+
(0...sizes[0]).each {|i| rows << eval(model) }
|
88
|
+
model_matrix = Matrix.rows(rows)
|
89
|
+
|
90
|
+
# Computation of coefficients
|
91
|
+
model_coeffs = (model_matrix.transpose * model_matrix).inverse * model_matrix.transpose * output
|
92
|
+
|
93
|
+
###########################################################################
|
94
|
+
# Calculation of the stability
|
95
|
+
r_total = 0.0
|
96
|
+
r_reg = 0.0
|
97
|
+
r_res = 0.0
|
98
|
+
modelDim = modelDim(model,true)
|
99
|
+
#test p model + "=>" + "modelDim: " + modelDim.to_s
|
100
|
+
# mean values for each measured variable
|
101
|
+
n = output.row_size
|
102
|
+
meanValues = []
|
103
|
+
output.column_vectors.each {|cv| meanValues << cv.to_a.inject {|sum,v| sum + v}/n}
|
104
|
+
# each measurement variable has to be treated separately
|
105
|
+
stability = []
|
106
|
+
output.column_vectors.each_with_index {|output_vector,k|
|
107
|
+
modelOutput = model_matrix * model_coeffs.column(k)
|
108
|
+
output_vector.to_a.each_with_index {|output_value,i|
|
109
|
+
r_total += (output_value - meanValues[k])**2
|
110
|
+
r_res += (output_value - modelOutput[i])**2
|
111
|
+
r_reg += (modelOutput[i] - meanValues[k])**2
|
112
|
+
}
|
113
|
+
r = r_reg/r_total
|
114
|
+
r_improved = 1.0 - (1.0 - r**2)*(k-1.0)/(k - modelDim -1.0)
|
115
|
+
stability << [r,r_improved]
|
116
|
+
}
|
117
|
+
|
118
|
+
return [model_coeffs, stability]
|
119
|
+
end
|
120
|
+
|
121
|
+
def LSModel.convertModelInputString(model)
|
122
|
+
"[" + model.gsub(/\[(\d+)\]/,"\[i,\\1\]") + "]"
|
123
|
+
end
|
124
|
+
|
125
|
+
def LSModel.modelHasConstant?(model)
|
126
|
+
input = Matrix.scalar(100,0.0)
|
127
|
+
i = 0
|
128
|
+
modelArray = eval(model)
|
129
|
+
modelArray.include?(1.0)
|
130
|
+
end
|
131
|
+
|
132
|
+
# For the calculation of the adjusted stability index, a special Dimensionis
|
133
|
+
# needed: the number of coefficients without the constant term.
|
134
|
+
def LSModel.modelDim(model,forAdjustedStability=false)
|
135
|
+
input = Matrix.scalar(100,0.0)
|
136
|
+
i = 0
|
137
|
+
dim = eval(model).size
|
138
|
+
(forAdjustedStability and modelHasConstant?(model)) ? dim - 1 : dim
|
139
|
+
end
|
140
|
+
|
141
|
+
def LSModel.modelOutput(model, model_coeffs, inputs)
|
142
|
+
inputs.collect!{|input| input.collect {|inn| inn.to_f}}
|
143
|
+
input = Matrix.rows(inputs)
|
144
|
+
model = convertModelInputString(model)
|
145
|
+
# Create the modelling Matrix
|
146
|
+
rows = []
|
147
|
+
(0...input.row_size).each {|i| rows << eval(model) }
|
148
|
+
model_matrix = Matrix.rows(rows)
|
149
|
+
#test pp model_matrix
|
150
|
+
modelOutput = model_matrix * model_coeffs
|
151
|
+
end
|
152
|
+
|
153
|
+
# Abstract modelling method. See test files for usage.
|
154
|
+
def LSModel.abstract_model(ins, outs, model, force=false)
|
155
|
+
minimal_variaion_size = (force) ? 2 : MINIMAL_VARIATION_SIZE
|
156
|
+
unless (ins[0].size == outs.size and outs.size >= minimal_variaion_size)
|
157
|
+
$stdout << "ERROR:\nMINIMAL_VARIATION_SIZE #{MINIMAL_VARIATION_SIZE} is not reached!\n"
|
158
|
+
$stdout << "Only #{ins[0].size} measurements are present.\n"
|
159
|
+
raise
|
160
|
+
end
|
161
|
+
|
162
|
+
params = [outs,ins]
|
163
|
+
params.each_with_index {|param,index|
|
164
|
+
if index == 0
|
165
|
+
# 'out' is a single array
|
166
|
+
params[index] = param.each_with_index {|v,i| param[i] = v.to_f}
|
167
|
+
else
|
168
|
+
# 'ins' is an array of arrays
|
169
|
+
param.each_with_index {|inn,i|
|
170
|
+
param[i] = inn.each_with_index {|v,i| inn[i] = v.to_f}
|
171
|
+
}
|
172
|
+
params[index] = param
|
173
|
+
end
|
174
|
+
}
|
175
|
+
out_vector = Vector.elements(outs)
|
176
|
+
rows = []
|
177
|
+
(0..ins.first.size-1).each {|i|
|
178
|
+
rows << eval(model)
|
179
|
+
var = eval(model)
|
180
|
+
}
|
181
|
+
matrix = Matrix.rows(rows)
|
182
|
+
model_coeffs = (matrix.transpose * matrix).inverse * matrix.transpose * out_vector
|
183
|
+
r, = abstract_stability_index(ins,
|
184
|
+
outs,
|
185
|
+
model,
|
186
|
+
model_coeffs)
|
187
|
+
[model_coeffs,r]
|
188
|
+
end
|
189
|
+
|
190
|
+
# Computation of fjhgugui<F5>zt56789gfrihi
|
191
|
+
#
|
192
|
+
# ,löl,00, <- this was nick ;)
|
193
|
+
#
|
194
|
+
# Computation of stability index according the the given model with its
|
195
|
+
# coeffs
|
196
|
+
def LSModel.abstract_stability_index(ins,outs,model,model_coeffs)
|
197
|
+
r_total = 0.0
|
198
|
+
r_reg = 0.0
|
199
|
+
r_res = 0.0
|
200
|
+
n = outs.size.to_f
|
201
|
+
outs_mid = outs.inject {|sum,i| sum + i } / n
|
202
|
+
|
203
|
+
outs.each_with_index {|out,i|
|
204
|
+
out_by_model = model_coeffs.inner_product(Vector.elements(eval(model)))
|
205
|
+
r_total += (outs[i] - outs_mid) * (outs[i] - outs_mid)
|
206
|
+
r_res += (outs[i] - out_by_model) * (outs[i] - out_by_model)
|
207
|
+
r_reg += (out_by_model - outs_mid) * (out_by_model - outs_mid)
|
208
|
+
}
|
209
|
+
|
210
|
+
r_ = r_reg/r_total
|
211
|
+
r = 1.0 - r_res/r_total
|
212
|
+
|
213
|
+
[r, r_]
|
214
|
+
end
|
215
|
+
|
216
|
+
# This function computed the know variance according the the model given by
|
217
|
+
# the 'mode' parameter:
|
218
|
+
# * 'linear' for the linear model y=s*x
|
219
|
+
def LSModel.stability_index(mode, s, y, *x)
|
220
|
+
r_total = 0.0
|
221
|
+
r_reg = 0.0
|
222
|
+
r_res = 0.0
|
223
|
+
n = y.size.to_f
|
224
|
+
y_mid = y.inject {|sum,i| sum + i } / n
|
225
|
+
|
226
|
+
case mode
|
227
|
+
when "linear"
|
228
|
+
x = x[0]
|
229
|
+
y.each_with_index {|y_i,i|
|
230
|
+
ys_i = s*x[i]
|
231
|
+
r_total += (y_i - y_mid) * (y_i - y_mid)
|
232
|
+
r_res += (y_i - ys_i) * (y_i - ys_i)
|
233
|
+
r_reg += (ys_i - y_mid) * (ys_i - y_mid)
|
234
|
+
}
|
235
|
+
when "affine"
|
236
|
+
a, b = s
|
237
|
+
y.each_with_index {|y_i,i|
|
238
|
+
ys_i = a*x[0][i] + b
|
239
|
+
r_total += (y_i - y_mid) * (y_i - y_mid)
|
240
|
+
r_res += (y_i - ys_i) * (y_i - ys_i)
|
241
|
+
r_reg += (ys_i - y_mid) * (ys_i - y_mid)
|
242
|
+
}
|
243
|
+
else
|
244
|
+
puts "Wrong working mode in function 'stability_index'! " +
|
245
|
+
"Use 'linear' or 'affine' instead.'"
|
246
|
+
raise
|
247
|
+
end
|
248
|
+
|
249
|
+
r_ = r_reg/r_total
|
250
|
+
r = 1.0 - r_res/r_total
|
251
|
+
|
252
|
+
[r, r_]
|
253
|
+
end
|
254
|
+
def LSModel.test_model(ins, out, model, model_coeffs)
|
255
|
+
params = [out,ins]
|
256
|
+
params.each_with_index {|param,index|
|
257
|
+
if index == 0 # 'out' is a single array
|
258
|
+
params[index] = param.each_with_index {|v,i| param[i] = v.to_f}
|
259
|
+
else # 'ins' is an array of arrays
|
260
|
+
param.each_with_index {|inn,i|
|
261
|
+
param[i] = inn.each_with_index {|v,i| inn[i] = v.to_f}
|
262
|
+
}
|
263
|
+
params[index] = param
|
264
|
+
end
|
265
|
+
}
|
266
|
+
r_total = 0.0
|
267
|
+
r_reg = 0.0
|
268
|
+
r_res = 0.0
|
269
|
+
n = out.size.to_f
|
270
|
+
out_mid = out.inject {|sum,i| sum + i } / n
|
271
|
+
|
272
|
+
model_out = []
|
273
|
+
model_diff = []
|
274
|
+
|
275
|
+
out.each_with_index {|value,i|
|
276
|
+
out_by_model = model_coeffs.inner_product(Vector.elements(eval(model)))
|
277
|
+
model_out << out_by_model
|
278
|
+
model_diff << out_by_model - value
|
279
|
+
r_total += (value - out_mid) * (value - out_mid)
|
280
|
+
r_res += (value - out_by_model) * (value - out_by_model)
|
281
|
+
r_reg += (out_by_model - out_mid) * (out_by_model - out_mid)
|
282
|
+
}
|
283
|
+
|
284
|
+
r_ = r_reg/r_total
|
285
|
+
r = 1.0 - r_res/r_total
|
286
|
+
|
287
|
+
{:r => r,:model => model_out, :diff => model_diff}
|
288
|
+
end
|
289
|
+
end
|
data/rakefile
ADDED
@@ -0,0 +1,134 @@
|
|
1
|
+
begin
|
2
|
+
require 'rubygems'
|
3
|
+
require 'rake/gempackagetask'
|
4
|
+
rescue Exception
|
5
|
+
nil
|
6
|
+
end
|
7
|
+
require 'rake/clean'
|
8
|
+
require 'rake/testtask'
|
9
|
+
require 'rake/rdoctask'
|
10
|
+
|
11
|
+
CLEAN.include('**/*.out')
|
12
|
+
SPEC = eval(File.open("gemspec","r").read)
|
13
|
+
CHANGELOGFILE = "CHANGELOG"
|
14
|
+
|
15
|
+
def filename_to_sym(filename)
|
16
|
+
File.basename(filename,File.extname(filename)).to_sym
|
17
|
+
end
|
18
|
+
|
19
|
+
# ====================================================================
|
20
|
+
# TEST TASKS
|
21
|
+
test_tasks = {
|
22
|
+
:test_all => ["Run all tests"],
|
23
|
+
:test_gr => ["Run graphical Test"],
|
24
|
+
:test_syn => ["Syntax Check for each ruby file in the project"]
|
25
|
+
}
|
26
|
+
# Syntax checkning task
|
27
|
+
task :test_syn do
|
28
|
+
Dir.glob("**/*.rb").each {|file|
|
29
|
+
printf "Checking Syntax of #{file} ..."
|
30
|
+
system("ruby -c #{file}")
|
31
|
+
}
|
32
|
+
end
|
33
|
+
# Test tasks for each test file
|
34
|
+
SPEC.test_files.each do |test_file|
|
35
|
+
next unless File.extname(test_file) == ".rb"
|
36
|
+
Rake::TestTask.new(filename_to_sym(test_file)) do |t|
|
37
|
+
test_tasks[:test_all] << filename_to_sym(test_file)
|
38
|
+
test_tasks[:test_gr] << filename_to_sym(test_file) if /display/.match(test_file)
|
39
|
+
t.test_files = FileList[test_file]
|
40
|
+
t.warning = false
|
41
|
+
t.verbose = true
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
# Test Tasks for groups of test files
|
46
|
+
test_tasks.each do |k,v|
|
47
|
+
desc v[0]
|
48
|
+
task k => v[1..-1]
|
49
|
+
end
|
50
|
+
# ====================================================================
|
51
|
+
# Create a task that will package the software into distributable
|
52
|
+
# tar, zip and gem files.
|
53
|
+
if ! defined?(Gem)
|
54
|
+
puts "Package Target requires RubyGEMs"
|
55
|
+
else
|
56
|
+
package_task = Rake::GemPackageTask.new(SPEC) do |pkg|
|
57
|
+
pkg.need_zip = false
|
58
|
+
pkg.need_tar = false
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
# ====================================================================
|
63
|
+
desc "Build package for further developement"
|
64
|
+
task :build_dev do
|
65
|
+
files = SPEC.files + Dir.glob("test/data/*")
|
66
|
+
#require 'pp'; pp files;end
|
67
|
+
com = "tar czf pkg/#{SPEC.name}-#{SPEC.version}-src.tgz #{files.join(" ")}"
|
68
|
+
system(com)
|
69
|
+
end
|
70
|
+
# ====================================================================
|
71
|
+
desc "Install the Library with docs"
|
72
|
+
task :install do
|
73
|
+
command = "gem install pkg/#{SPEC.name}-#{SPEC.version}.gem"
|
74
|
+
puts command
|
75
|
+
system(command)
|
76
|
+
end
|
77
|
+
task :smallInstall do
|
78
|
+
command = "gem install pkg/#{SPEC.name}-#{SPEC.version}.gem --no-ri --no-rdoc"
|
79
|
+
puts command
|
80
|
+
system(command)
|
81
|
+
end
|
82
|
+
#desc "Only install what is in bin to /usr/local/bin"
|
83
|
+
#task :binstall do
|
84
|
+
# if File.directory?('/usr/local/bin')
|
85
|
+
# bins = Dir.glob("bin/*.rb")
|
86
|
+
# command = "install -m 755 #{bins.join(' ')} /usr/local/bin"
|
87
|
+
# puts command
|
88
|
+
# system(command)
|
89
|
+
# end
|
90
|
+
#end
|
91
|
+
# ====================================================================
|
92
|
+
desc "All"
|
93
|
+
task :all => [:install, :populate] do
|
94
|
+
end
|
95
|
+
|
96
|
+
# ====================================================================
|
97
|
+
# Create a task to build the RDOC documentation tree.
|
98
|
+
Rake::RDocTask.new("rdoc") { |rdoc|
|
99
|
+
rdoc.rdoc_dir = 'rdoc'
|
100
|
+
rdoc.title = "extcsv - Make csv-like Data feel ike DB-tables"
|
101
|
+
rdoc.options << '-ad' << '--line-numbers' << '--inline-source'
|
102
|
+
rdoc.rdoc_files.include('lib/**/*.rb', 'doc/**/*.rdoc')
|
103
|
+
}
|
104
|
+
|
105
|
+
############################################################
|
106
|
+
# ====================================================================
|
107
|
+
# Task to build and populate the changelog
|
108
|
+
desc "build changelog"
|
109
|
+
task :changelog do
|
110
|
+
changelogfile_pop = "#{SPEC.name}_#{CHANGELOGFILE}.html"
|
111
|
+
changelog_proc = "/usr/local/bin/redcloth"
|
112
|
+
command = "#{changelog_proc} #{CHANGELOGFILE} > #{changelogfile_pop}"
|
113
|
+
puts command
|
114
|
+
system(command)
|
115
|
+
end
|
116
|
+
###############################################################################
|
117
|
+
desc "renew the tags file"
|
118
|
+
task :tags do
|
119
|
+
com = "rtags --vi -f tags lib/*.rb"
|
120
|
+
system(com)
|
121
|
+
end
|
122
|
+
#
|
123
|
+
desc "go on editing from last Session if possible"
|
124
|
+
task :edit do
|
125
|
+
visual_mode = (ENV["vimode"].nil?) ? '-p' : ENV["vimode"]
|
126
|
+
com = (File.exist?("Session.vim"))\
|
127
|
+
? 'vim -S'\
|
128
|
+
: "vim #{SPEC.files.join(" ")} rakefile #{visual_mode}"
|
129
|
+
puts com
|
130
|
+
system(com)
|
131
|
+
end
|
132
|
+
#
|
133
|
+
# vim:ft=ruby
|
134
|
+
#
|
@@ -0,0 +1,116 @@
|
|
1
|
+
Step try col1 col2 col3 col4 col5 col6 col7 col8
|
2
|
+
1 1 80,0 50,0 6,14 5 233,6 0,2211 2,0217 1,9672
|
3
|
+
2 1 80,0 100,0 6,47 5 244,0 0,2090 2,1445 2,0345
|
4
|
+
3 1 80,0 150,0 6,67 5 251,8 0,1996 2,2393 2,0832
|
5
|
+
4 1 80,0 200,0 6,82 5 255,5 0,1967 2,2805 2,1087
|
6
|
+
5 1 80,0 250,0 6,94 5 261,5 0,1902 2,3529 2,1465
|
7
|
+
6 1 80,0 300,0 7,04 5 267,3 0,1836 2,4247 2,1819
|
8
|
+
7 1 80,0 350,0 7,12 5 272,3 0,1792 2,4834 2,2145
|
9
|
+
8 1 80,0 400,0 7,20 5 278,6 0,1725 2,5616 2,2528
|
10
|
+
9 1 80,0 450,0 7,26 5 281,3 0,1700 2,5942 2,2698
|
11
|
+
10 1 80,0 500,0 7,33 5 286,5 0,1641 2,6609 2,3001
|
12
|
+
11 1 80,0 550,0 7,38 5 290,8 0,1598 2,7148 2,3260
|
13
|
+
12 1 100,0 50,0 6,12 5 265,1 0,2187 2,3014 2,2281
|
14
|
+
13 1 100,0 100,0 6,45 5 272,6 0,2118 2,3874 2,2782
|
15
|
+
14 1 100,0 150,0 6,65 5 277,5 0,2086 2,4402 2,3130
|
16
|
+
15 1 100,0 200,0 6,80 5 282,8 0,2028 2,5050 2,3459
|
17
|
+
16 1 100,0 250,0 6,92 5 287,3 0,1993 2,5560 2,3763
|
18
|
+
17 1 100,0 300,0 7,01 5 293,6 0,1928 2,6333 2,4152
|
19
|
+
18 1 100,0 350,0 7,10 5 297,5 0,1893 2,6798 2,4401
|
20
|
+
19 1 100,0 400,0 7,17 5 302,9 0,1835 2,7480 2,4723
|
21
|
+
20 1 100,0 450,0 7,24 5 306,1 0,1805 2,7872 2,4921
|
22
|
+
21 1 100,0 500,0 7,30 5 310,2 0,1764 2,8387 2,5167
|
23
|
+
22 1 100,0 550,0 7,36 5 313,7 0,1722 2,8853 2,5360
|
24
|
+
23 1 100,0 600,0 7,41 5 316,7 0,1682 2,9270 2,5515
|
25
|
+
24 1 100,0 650,0 7,46 5 318,4 0,1655 2,9523 2,5593
|
26
|
+
25 1 100,0 700,0 7,50 5 321,5 0,1618 2,9942 2,5760
|
27
|
+
26 1 100,0 750,0 7,54 5 320,4 0,1618 2,9840 2,5672
|
28
|
+
27 1 100,0 800,0 7,58 5 322,7 0,1582 3,0183 2,5776
|
29
|
+
28 1 100,0 850,0 7,62 5 326,0 0,1540 3,0644 2,5945
|
30
|
+
29 1 100,0 900,0 7,66 5 328,3 0,1508 3,0977 2,6056
|
31
|
+
30 1 100,0 950,0 7,69 5 331,4 0,1482 3,1365 2,6242
|
32
|
+
31 1 100,0 1000,0 7,72 5 333,7 0,1459 3,1668 2,6372
|
33
|
+
32 1 120,0 50,0 6,11 5 296,3 0,2167 2,5788 2,4863
|
34
|
+
33 1 120,0 100,0 6,43 5 302,6 0,2101 2,6558 2,5254
|
35
|
+
34 1 120,0 150,0 6,63 5 306,0 0,2077 2,6938 2,5487
|
36
|
+
35 1 120,0 200,0 6,78 5 311,5 0,2033 2,7575 2,5850
|
37
|
+
36 1 120,0 250,0 6,90 5 315,4 0,2000 2,8036 2,6102
|
38
|
+
37 1 120,0 300,0 6,99 5 318,8 0,1980 2,8409 2,6339
|
39
|
+
38 1 120,0 350,0 7,08 5 323,2 0,1934 2,8966 2,6600
|
40
|
+
39 1 120,0 400,0 7,15 5 327,7 0,1898 2,9500 2,6889
|
41
|
+
40 1 120,0 450,0 7,22 5 331,1 0,1867 2,9920 2,7098
|
42
|
+
41 1 120,0 500,0 7,28 5 334,0 0,1839 3,0286 2,7271
|
43
|
+
42 1 120,0 550,0 7,33 5 335,8 0,1817 3,0532 2,7367
|
44
|
+
43 1 120,0 600,0 7,38 5 336,7 0,1809 3,0643 2,7421
|
45
|
+
44 1 120,0 650,0 7,43 5 337,4 0,1774 3,0838 2,7397
|
46
|
+
45 1 120,0 700,0 7,47 5 337,8 0,1762 3,0920 2,7401
|
47
|
+
46 1 120,0 750,0 7,51 5 340,0 0,1733 3,1231 2,7512
|
48
|
+
47 1 120,0 800,0 7,55 5 343,1 0,1692 3,1672 2,7666
|
49
|
+
48 1 120,0 850,0 7,59 5 345,4 0,1672 3,1961 2,7804
|
50
|
+
49 1 120,0 900,0 7,62 5 347,9 0,1646 3,2293 2,7942
|
51
|
+
50 1 120,0 950,0 7,66 5 348,6 0,1642 3,2373 2,7989
|
52
|
+
51 1 120,0 1000,0 7,69 5 352,4 0,1608 3,2859 2,8211
|
53
|
+
52 1 140,0 50,0 5,70 5 325,8 0,2141 2,8450 2,7280
|
54
|
+
53 1 140,0 100,0 6,09 5 328,5 0,2137 2,8700 2,7497
|
55
|
+
54 1 140,0 150,0 6,42 5 332,1 0,2107 2,9125 2,7729
|
56
|
+
55 1 140,0 200,0 6,62 5 337,0 0,2063 2,9720 2,8036
|
57
|
+
56 1 140,0 250,0 6,76 5 341,1 0,2030 3,0206 2,8300
|
58
|
+
57 1 140,0 300,0 6,88 5 344,5 0,2000 3,0622 2,8510
|
59
|
+
58 1 140,0 350,0 6,98 5 348,3 0,1970 3,1076 2,8753
|
60
|
+
59 1 140,0 400,0 7,06 5 349,0 0,1974 3,1123 2,8820
|
61
|
+
60 1 140,0 450,0 7,13 5 352,5 0,1944 3,1553 2,9036
|
62
|
+
61 1 140,0 500,0 7,20 5 356,6 0,1892 3,2126 2,9246
|
63
|
+
62 1 140,0 550,0 7,26 5 356,0 0,1884 3,2103 2,9177
|
64
|
+
63 1 140,0 600,0 7,31 5 356,2 0,1878 3,2145 2,9179
|
65
|
+
64 1 140,0 650,0 7,36 5 357,5 0,1852 3,2366 2,9221
|
66
|
+
65 1 140,0 700,0 7,40 5 359,6 0,1825 3,2664 2,9326
|
67
|
+
66 1 140,0 750,0 7,45 5 360,7 0,1821 3,2780 2,9406
|
68
|
+
67 1 80,0 50,0 6,14 4 281,9 0,1603 2,6301 2,2558
|
69
|
+
68 1 80,0 100,0 6,47 4 287,9 0,1561 2,6995 2,2955
|
70
|
+
69 1 80,0 150,0 6,67 4 295,0 0,1506 2,7841 2,3409
|
71
|
+
70 1 80,0 200,0 6,82 4 300,4 0,1456 2,8518 2,3734
|
72
|
+
71 1 80,0 250,0 6,94 4 305,4 0,1411 2,9145 2,4034
|
73
|
+
72 1 80,0 300,0 7,04 4 310,3 0,1365 2,9772 2,4321
|
74
|
+
73 1 80,0 350,0 7,12 4 311,3 0,1354 2,9906 2,4376
|
75
|
+
74 1 80,0 400,0 7,20 4 316,1 0,1307 3,0532 2,4649
|
76
|
+
75 1 80,0 450,0 7,26 4 320,3 0,1266 3,1083 2,4886
|
77
|
+
76 1 80,0 500,0 7,33 4 322,3 0,1242 3,1363 2,4988
|
78
|
+
77 1 80,0 550,0 7,38 4 325,0 0,1209 3,1745 2,5124
|
79
|
+
78 1 100,0 50,0 6,12 4 319,9 0,1590 2,9893 2,5570
|
80
|
+
79 1 100,0 100,0 6,45 4 326,2 0,1546 3,0641 2,5975
|
81
|
+
80 1 100,0 150,0 6,65 4 330,7 0,1515 3,1178 2,6262
|
82
|
+
81 1 100,0 200,0 6,80 4 333,2 0,1491 3,1502 2,6406
|
83
|
+
82 1 100,0 250,0 6,92 4 337,3 0,1458 3,2014 2,6654
|
84
|
+
83 1 100,0 300,0 7,01 4 341,1 0,1431 3,2477 2,6890
|
85
|
+
84 1 100,0 350,0 7,10 4 344,9 0,1397 3,2969 2,7109
|
86
|
+
85 1 100,0 400,0 7,17 4 347,4 0,1376 3,3289 2,7255
|
87
|
+
86 1 100,0 450,0 7,24 4 349,4 0,1354 3,3566 2,7359
|
88
|
+
87 1 100,0 500,0 7,30 4 352,6 0,1325 3,3987 2,7539
|
89
|
+
88 1 100,0 550,0 7,36 4 355,4 0,1303 3,4343 2,7704
|
90
|
+
89 1 100,0 600,0 7,41 4 357,1 0,1282 3,4591 2,7785
|
91
|
+
90 1 100,0 650,0 7,46 4 358,5 0,1259 3,4818 2,7837
|
92
|
+
91 1 100,0 700,0 7,50 4 365,5 0,1198 3,5746 2,8227
|
93
|
+
92 1 120,0 50,0 6,11 4 355,5 0,1581 3,3255 2,8393
|
94
|
+
93 1 120,0 100,0 6,43 4 360,4 0,1542 3,3870 2,8688
|
95
|
+
94 1 120,0 150,0 6,63 4 363,6 0,1523 3,4247 2,8895
|
96
|
+
95 1 120,0 200,0 6,78 4 366,5 0,1506 3,4589 2,9082
|
97
|
+
96 1 120,0 250,0 6,90 4 370,0 0,1482 3,5018 2,9299
|
98
|
+
97 1 120,0 300,0 6,99 4 372,0 0,1462 3,5290 2,9406
|
99
|
+
98 1 120,0 350,0 7,08 4 374,8 0,1437 3,5660 2,9563
|
100
|
+
99 1 120,0 400,0 7,15 4 372,9 0,1454 3,5409 2,9457
|
101
|
+
100 1 120,0 450,0 7,22 4 375,7 0,1435 3,5754 2,9628
|
102
|
+
101 1 120,0 500,0 7,28 4 378,4 0,1415 3,6095 2,9789
|
103
|
+
102 1 120,0 550,0 7,33 4 380,9 0,1391 3,6435 2,9923
|
104
|
+
103 1 120,0 600,0 7,38 4 383,0 0,1372 3,6717 3,0038
|
105
|
+
104 1 140,0 50,0 6,09 4 390,2 0,1558 3,6601 3,1103
|
106
|
+
105 1 140,0 100,0 6,42 4 393,8 0,1540 3,7017 3,1341
|
107
|
+
106 1 140,0 150,0 6,62 4 396,8 0,1523 3,7374 3,1533
|
108
|
+
107 1 140,0 200,0 6,76 4 399,0 0,1506 3,7657 3,1661
|
109
|
+
108 1 140,0 250,0 6,88 4 402,0 0,1488 3,8020 3,1849
|
110
|
+
109 1 140,0 300,0 6,98 4 404,1 0,1472 3,8291 3,1971
|
111
|
+
110 1 140,0 350,0 7,06 4 405,8 0,1457 3,8519 3,2064
|
112
|
+
111 1 140,0 400,0 7,13 4 407,2 0,1447 3,8698 3,2146
|
113
|
+
112 1 140,0 450,0 7,20 4 409,6 0,1428 3,9012 3,2282
|
114
|
+
113 1 140,0 500,0 7,26 4 410,3 0,1421 3,9111 3,2317
|
115
|
+
114 1 140,0 550,0 7,31 4 408,5 0,1433 3,8885 3,2210
|
116
|
+
|
@@ -0,0 +1,121 @@
|
|
1
|
+
zeit try col1 col2 col3 col4 col5 col6 col7 col8 string Vers colN
|
2
|
+
19.01.2007 13:12:38 8 80,0 50,0 6,99 5 267,8 0,1540 2,5172 2,1313 machine1 V4_2 2500
|
3
|
+
17.01.2007 15:45:49 3 80,0 50,0 6,98 4 301,1 0,1232 2,9335 2,3325 machine1 V4_2 2500
|
4
|
+
17.01.2007 15:33:44 2 80,0 100,0 7,34 5 254,2 0,1791 2,3189 2,0674 machine1 V4_2 2500
|
5
|
+
17.01.2007 15:46:40 3 80,0 100,0 7,34 4 310,3 0,1156 3,0495 2,3875 machine1 V4_2 2500
|
6
|
+
17.01.2007 15:34:21 3 80,0 150,0 7,56 5 266,4 0,1660 2,4688 2,1424 machine1 V4_2 2500
|
7
|
+
17.01.2007 15:47:14 3 80,0 150,0 7,56 4 315,8 0,1115 3,1176 2,4208 machine1 V4_2 2500
|
8
|
+
17.01.2007 15:35:17 5 80,0 200,0 7,71 5 280,0 0,1494 2,6458 2,2192 machine1 V4_2 2500
|
9
|
+
17.01.2007 15:48:09 5 80,0 200,0 7,71 4 321,4 0,1065 3,1910 2,4526 machine1 V4_2 2500
|
10
|
+
17.01.2007 15:36:04 4 80,0 250,0 7,84 5 287,3 0,1423 2,7380 2,2635 machine1 V4_2 2500
|
11
|
+
17.01.2007 15:48:48 3 80,0 250,0 7,84 4 326,0 0,1039 3,2455 2,4815 machine1 V4_2 2500
|
12
|
+
17.01.2007 15:36:48 3 80,0 300,0 7,94 5 290,2 0,1413 2,7691 2,2846 machine1 V4_2 2500
|
13
|
+
17.01.2007 15:49:32 3 80,0 300,0 7,94 4 330,4 0,1008 3,3013 2,5085 machine1 V4_2 2500
|
14
|
+
17.01.2007 15:38:14 3 80,0 350,0 8,03 5 296,6 0,1349 2,8511 2,3214 machine1 V4_2 2500
|
15
|
+
17.01.2007 15:50:22 3 80,0 350,0 8,03 4 335,4 0,0965 3,3674 2,5364 machine1 V4_2 2500
|
16
|
+
17.01.2007 15:39:25 4 80,0 400,0 8,11 5 303,5 0,1276 2,9425 2,3605 machine1 V4_2 2500
|
17
|
+
17.01.2007 15:51:19 3 80,0 400,0 8,10 4 338,7 0,0937 3,4112 2,5551 machine1 V4_2 2500
|
18
|
+
17.01.2007 15:40:57 3 80,0 450,0 8,17 5 307,0 0,1256 2,9830 2,3833 machine1 V4_2 2500
|
19
|
+
17.01.2007 15:52:22 3 80,0 450,0 8,17 4 342,7 0,0906 3,4627 2,5773 machine1 V4_2 2500
|
20
|
+
17.01.2007 15:42:07 3 80,0 500,0 8,23 5 310,6 0,1223 3,0291 2,4043 machine1 V4_2 2500
|
21
|
+
17.01.2007 15:53:32 3 80,0 500,0 8,23 4 345,7 0,0877 3,5045 2,5934 machine1 V4_2 2500
|
22
|
+
17.01.2007 15:43:23 3 80,0 550,0 8,28 5 314,6 0,1191 3,0797 2,4284 machine1 V4_2 2500
|
23
|
+
17.01.2007 15:54:29 2 80,0 550,0 8,28 4 347,0 0,0866 3,5217 2,6002 machine1 V4_2 2500
|
24
|
+
17.01.2007 15:44:45 3 80,0 600,0 8,33 5 318,6 0,1154 3,1313 2,4505 machine1 V4_2 2500
|
25
|
+
17.01.2007 15:55:30 2 80,0 600,0 8,33 4 350,3 0,0834 3,5679 2,6176 machine1 V4_2 2500
|
26
|
+
17.01.2007 15:56:21 2 100,0 50,0 6,96 5 267,9 0,1993 2,3835 2,2160 machine1 V4_2 2500
|
27
|
+
17.01.2007 16:31:41 4 100,0 50,0 6,96 4 340,6 0,1227 3,3205 2,6373 machine1 V4_2 2500
|
28
|
+
17.01.2007 15:57:04 2 100,0 100,0 7,31 5 280,9 0,1846 2,5448 2,2947 machine1 V4_2 2500
|
29
|
+
17.01.2007 16:32:39 3 100,0 100,0 7,32 4 344,4 0,1204 3,3664 2,6614 machine1 V4_2 2500
|
30
|
+
17.01.2007 15:58:01 5 100,0 150,0 7,53 5 296,9 0,1664 2,7499 2,3882 machine1 V4_2 2500
|
31
|
+
17.01.2007 16:33:25 4 100,0 150,0 7,54 4 352,0 0,1139 3,4662 2,7043 machine1 V4_2 2500
|
32
|
+
17.01.2007 15:58:49 4 100,0 200,0 7,69 5 305,4 0,1584 2,8555 2,4396 machine1 V4_2 2500
|
33
|
+
17.01.2007 16:34:04 3 100,0 200,0 7,70 4 356,0 0,1112 3,5153 2,7280 machine1 V4_2 2500
|
34
|
+
17.01.2007 15:59:58 5 100,0 250,0 7,81 5 313,2 0,1506 2,9560 2,4855 machine1 V4_2 2500
|
35
|
+
17.01.2007 16:34:48 3 100,0 250,0 7,82 4 360,4 0,1078 3,5731 2,7534 machine1 V4_2 2500
|
36
|
+
17.01.2007 16:01:06 4 100,0 300,0 7,92 5 318,0 0,1472 3,0135 2,5162 machine1 V4_2 2500
|
37
|
+
17.01.2007 16:35:42 3 100,0 300,0 7,92 4 364,5 0,1048 3,6256 2,7771 machine1 V4_2 2500
|
38
|
+
17.01.2007 16:02:24 4 100,0 350,0 8,00 5 323,9 0,1420 3,0880 2,5510 machine1 V4_2 2500
|
39
|
+
17.01.2007 16:36:43 3 100,0 350,0 8,01 4 368,6 0,1021 3,6776 2,8015 machine1 V4_2 2500
|
40
|
+
17.01.2007 16:03:51 4 100,0 400,0 8,07 5 328,4 0,1378 3,1456 2,5767 machine1 V4_2 2500
|
41
|
+
17.01.2007 16:37:53 3 100,0 400,0 8,08 4 372,1 0,0996 3,7224 2,8217 machine1 V4_2 2500
|
42
|
+
17.01.2007 16:05:09 3 100,0 450,0 8,14 5 330,6 0,1366 3,1715 2,5914 machine1 V4_2 2500
|
43
|
+
17.01.2007 16:39:11 3 100,0 450,0 8,15 4 375,5 0,0972 3,7669 2,8417 machine1 V4_2 2500
|
44
|
+
17.01.2007 16:06:55 4 100,0 500,0 8,20 5 336,5 0,1310 3,2492 2,6247 machine1 V4_2 2500
|
45
|
+
17.01.2007 16:40:36 3 100,0 500,0 8,21 4 378,9 0,0948 3,8109 2,8611 machine1 V4_2 2500
|
46
|
+
17.01.2007 16:08:28 3 100,0 550,0 8,25 5 338,3 0,1302 3,2700 2,6372 machine1 V4_2 2500
|
47
|
+
17.01.2007 16:42:10 3 100,0 550,0 8,25 4 381,9 0,0927 3,8501 2,8778 machine1 V4_2 2500
|
48
|
+
17.01.2007 16:10:37 4 100,0 600,0 8,30 5 344,5 0,1243 3,3520 2,6714 machine1 V4_2 2500
|
49
|
+
17.01.2007 16:45:15 6 100,0 600,0 8,31 4 387,0 0,0884 3,9194 2,9048 machine1 V4_2 2500
|
50
|
+
17.01.2007 16:12:26 3 100,0 650,0 8,34 5 346,1 0,1241 3,3679 2,6828 machine1 V4_2 2500
|
51
|
+
17.01.2007 16:49:51 9 100,0 650,0 8,26 4 390,0 0,0856 3,9623 2,9196 machine1 V4_2 2500
|
52
|
+
17.01.2007 16:14:24 3 100,0 700,0 8,37 5 350,6 0,1202 3,4270 2,7081 machine1 V4_2 2500
|
53
|
+
19.01.2007 13:08:53 7 100,0 700,0 8,32 4 391,4 0,0809 3,9971 2,9178 machine1 V4_2 2500
|
54
|
+
17.01.2007 16:16:30 3 100,0 750,0 8,41 5 353,4 0,1178 3,4638 2,7240 machine1 V4_2 2500
|
55
|
+
17.01.2007 16:19:51 3 100,0 800,0 8,44 5 356,9 0,1145 3,5115 2,7433 machine1 V4_2 2500
|
56
|
+
17.01.2007 16:22:13 3 100,0 850,0 8,46 5 358,9 0,1127 3,5388 2,7544 machine1 V4_2 2500
|
57
|
+
17.01.2007 16:24:42 3 100,0 900,0 8,49 5 361,2 0,1108 3,5684 2,7670 machine1 V4_2 2500
|
58
|
+
17.01.2007 16:27:19 3 100,0 950,0 8,51 5 363,5 0,1082 3,6018 2,7782 machine1 V4_2 2500
|
59
|
+
17.01.2007 16:30:03 3 100,0 1000,0 8,53 5 365,2 0,1066 3,6251 2,7872 machine1 V4_2 2500
|
60
|
+
17.01.2007 17:01:15 4 120,0 50,0 6,95 5 313,4 0,1784 2,8611 2,5471 machine1 V4_2 2500
|
61
|
+
17.01.2007 17:47:10 3 120,0 50,0 6,95 4 373,1 0,1262 3,6220 2,8974 machine1 V4_2 2500
|
62
|
+
17.01.2007 17:02:53 5 120,0 100,0 7,30 5 329,0 0,1610 3,0666 2,6339 machine1 V4_2 2500
|
63
|
+
17.01.2007 17:48:32 4 120,0 100,0 7,30 4 382,9 0,1172 3,7560 2,9505 machine1 V4_2 2500
|
64
|
+
17.01.2007 17:03:52 5 120,0 150,0 7,52 5 335,4 0,1555 3,1470 2,6726 machine1 V4_2 2500
|
65
|
+
17.01.2007 17:49:22 4 120,0 150,0 7,52 4 390,4 0,1108 3,8569 2,9903 machine1 V4_2 2500
|
66
|
+
17.01.2007 17:04:59 5 120,0 200,0 7,68 5 341,2 0,1508 3,2194 2,7080 machine1 V4_2 2500
|
67
|
+
17.01.2007 17:50:06 3 120,0 200,0 7,68 4 393,3 0,1093 3,8923 3,0087 machine1 V4_2 2500
|
68
|
+
17.01.2007 17:06:06 4 120,0 250,0 7,80 5 345,7 0,1479 3,2726 2,7364 machine1 V4_2 2500
|
69
|
+
17.01.2007 17:50:59 3 120,0 250,0 7,80 4 397,1 0,1066 3,9421 3,0306 machine1 V4_2 2500
|
70
|
+
17.01.2007 17:08:09 5 120,0 300,0 7,90 5 352,3 0,1419 3,3585 2,7743 machine1 V4_2 2500
|
71
|
+
17.01.2007 17:52:02 3 120,0 300,0 7,90 4 401,0 0,1041 3,9920 3,0533 machine1 V4_2 2500
|
72
|
+
17.01.2007 17:09:40 4 120,0 350,0 7,99 5 355,1 0,1407 3,3904 2,7933 machine1 V4_2 2500
|
73
|
+
17.01.2007 17:53:14 3 120,0 350,0 7,99 4 404,4 0,1018 4,0361 3,0730 machine1 V4_2 2500
|
74
|
+
17.01.2007 17:11:22 4 120,0 400,0 8,06 5 360,1 0,1366 3,4542 2,8226 machine1 V4_2 2500
|
75
|
+
17.01.2007 17:54:36 3 120,0 400,0 8,06 4 407,4 0,1000 4,0741 3,0905 machine1 V4_2 2500
|
76
|
+
17.01.2007 17:13:17 4 120,0 450,0 8,12 5 364,0 0,1335 3,5042 2,8452 machine1 V4_2 2500
|
77
|
+
17.01.2007 17:56:30 4 120,0 450,0 8,13 4 412,7 0,0964 4,1432 3,1205 machine1 V4_2 2500
|
78
|
+
17.01.2007 17:15:24 4 120,0 500,0 8,18 5 367,9 0,1306 3,5536 2,8682 machine1 V4_2 2500
|
79
|
+
17.01.2007 17:58:37 4 120,0 500,0 8,19 4 415,4 0,0946 4,1786 3,1357 machine1 V4_2 2500
|
80
|
+
17.01.2007 17:18:11 4 120,0 550,0 8,23 5 371,2 0,1281 3,5958 2,8876 machine1 V4_2 2500
|
81
|
+
17.01.2007 18:01:15 4 120,0 550,0 8,23 4 417,8 0,0931 4,2094 3,1495 machine1 V4_2 2500
|
82
|
+
17.01.2007 17:21:00 4 120,0 600,0 8,28 5 374,8 0,1256 3,6416 2,9097 machine1 V4_2 2500
|
83
|
+
17.01.2007 18:03:15 3 120,0 600,0 8,27 4 417,1 0,0938 4,1998 3,1461 machine1 V4_2 2500
|
84
|
+
17.01.2007 17:23:43 4 120,0 650,0 8,32 5 378,0 0,1237 3,6806 2,9294 machine1 V4_2 2500
|
85
|
+
17.01.2007 17:26:02 3 120,0 700,0 8,36 5 378,2 0,1244 3,6796 2,9330 machine1 V4_2 2500
|
86
|
+
17.01.2007 17:28:31 3 120,0 750,0 8,40 5 380,7 0,1228 3,7110 2,9484 machine1 V4_2 2500
|
87
|
+
17.01.2007 17:31:09 3 120,0 800,0 8,43 5 383,3 0,1212 3,7431 2,9639 machine1 V4_2 2500
|
88
|
+
17.01.2007 17:33:57 3 120,0 850,0 8,46 5 385,8 0,1194 3,7744 2,9783 machine1 V4_2 2500
|
89
|
+
17.01.2007 17:37:38 4 120,0 900,0 8,49 5 390,0 0,1163 3,8299 3,0027 machine1 V4_2 2500
|
90
|
+
17.01.2007 17:41:32 4 120,0 950,0 8,51 5 392,1 0,1149 3,8555 3,0147 machine1 V4_2 2500
|
91
|
+
17.01.2007 17:45:38 4 120,0 1000,0 8,51 5 394,3 0,1134 3,8843 3,0279 machine1 V4_2 2500
|
92
|
+
19.01.2007 13:22:58 9 140,0 50,0 6,94 5 336,3 0,1837 3,0498 2,7450 machine1 V4_2 2500
|
93
|
+
19.01.2007 15:04:33 9 140,0 50,0 6,96 4 406,4 0,1261 3,9464 3,1566 machine1 V4_2 2500
|
94
|
+
19.01.2007 13:28:07 7 140,0 100,0 7,30 5 349,7 0,1695 3,2272 2,8209 machine1 V4_2 2500
|
95
|
+
19.01.2007 15:06:57 4 140,0 100,0 7,31 4 414,4 0,1193 4,0556 3,1993 machine1 V4_2 2500
|
96
|
+
19.01.2007 13:32:56 5 140,0 150,0 7,51 5 359,9 0,1603 3,3576 2,8795 machine1 V4_2 2500
|
97
|
+
19.01.2007 15:08:59 4 140,0 150,0 7,52 4 419,6 0,1155 4,1240 3,2285 machine1 V4_2 2500
|
98
|
+
19.01.2007 13:35:06 3 140,0 200,0 7,67 5 365,9 0,1555 3,4331 2,9157 machine1 V4_2 2500
|
99
|
+
19.01.2007 15:11:29 5 140,0 200,0 7,67 4 425,5 0,1112 4,2020 3,2610 machine1 V4_2 2500
|
100
|
+
19.01.2007 13:37:11 4 140,0 250,0 7,79 5 372,7 0,1497 3,5213 2,9554 machine1 V4_2 2500
|
101
|
+
19.01.2007 15:13:14 2 140,0 250,0 7,79 4 426,2 0,1107 4,2113 3,2643 machine1 V4_2 2500
|
102
|
+
19.01.2007 13:40:55 3 140,0 300,0 7,89 5 378,6 0,1443 3,6000 2,9878 machine1 V4_2 2500
|
103
|
+
19.01.2007 15:15:14 3 140,0 300,0 7,86 4 428,9 0,1086 4,2481 3,2789 machine1 V4_2 2500
|
104
|
+
19.01.2007 13:44:11 1 140,0 350,0 7,97 5 380,0 0,1441 3,6138 2,9983 machine1 V4_2 2500
|
105
|
+
19.01.2007 15:16:56 3 140,0 350,0 7,92 4 429,3 0,1076 4,2570 3,2793 machine1 V4_2 2500
|
106
|
+
19.01.2007 13:49:33 3 140,0 400,0 8,04 5 386,8 0,1397 3,6972 3,0404 machine1 V4_2 2500
|
107
|
+
19.01.2007 15:19:17 4 140,0 400,0 7,97 4 432,4 0,1056 4,2968 3,2966 machine1 V4_2 2500
|
108
|
+
19.01.2007 13:52:30 3 140,0 450,0 8,10 5 388,9 0,1387 3,7221 3,0541 machine1 V4_2 2500
|
109
|
+
19.01.2007 15:21:52 3 140,0 450,0 8,01 4 434,0 0,1038 4,3217 3,3039 machine1 V4_2 2500
|
110
|
+
19.01.2007 13:56:49 6 140,0 500,0 7,92 5 371,6 0,1538 3,4934 2,9567 machine1 V4_2 2500
|
111
|
+
19.01.2007 15:24:21 4 140,0 500,0 8,07 4 437,5 0,1015 4,3676 3,3236 machine1 V4_2 2500
|
112
|
+
19.01.2007 13:59:29 3 140,0 550,0 7,91 5 372,1 0,1544 3,4957 2,9620 machine1 V4_2 2500
|
113
|
+
19.01.2007 15:26:42 3 140,0 550,0 8,10 4 439,7 0,0997 4,3985 3,3348 machine1 V4_2 2500
|
114
|
+
19.01.2007 14:02:37 3 140,0 600,0 7,90 5 374,5 0,1506 3,5343 2,9713 machine1 V4_2 2500
|
115
|
+
19.01.2007 15:30:21 3 140,0 600,0 8,10 4 442,0 0,0983 4,4280 3,3477 machine1 V4_2 2500
|
116
|
+
19.01.2007 14:05:36 3 140,0 650,0 7,94 5 378,4 0,1476 3,5840 2,9946 machine1 V4_2 2500
|
117
|
+
19.01.2007 15:32:35 2 140,0 650,0 8,14 4 442,8 0,0971 4,4426 3,3504 machine1 V4_2 2500
|
118
|
+
19.01.2007 14:10:05 4 140,0 700,0 7,88 5 385,3 0,1413 3,6762 3,0326 machine1 V4_2 2500
|
119
|
+
19.01.2007 15:35:49 3 140,0 700,0 8,18 4 445,3 0,0953 4,4760 3,3636 machine1 V4_2 2500
|
120
|
+
19.01.2007 14:14:19 4 140,0 750,0 7,87 5 389,1 0,1387 3,7238 3,0555 machine1 V4_2 2500
|
121
|
+
19.01.2007 15:39:48 4 140,0 750,0 8,28 4 449,6 0,0925 4,5333 3,3873 machine1 V4_2 2500
|