@@ -87,22 +87,22 @@ function profile_reduce_methods()
8787 prod,
8888 minimum,
8989 maximum,)
90- (method)(Y, skipnull = true )
90+ (method)(Y, skipnull= true )
9191 println (" Method: $method (A) (~half missing entries, skip=true)" )
9292 print (" for NullableArray{Float64}: " )
93- @time ((method)(Y, skipnull = true ))
94- (method)(E, skipna = true )
93+ @time ((method)(Y, skipnull= true ))
94+ (method)(E, skipna= true )
9595 print (" for DataArray{Float64}: " )
96- @time ((method)(E, skipna = true ))
96+ @time ((method)(E, skipna= true ))
9797 println ()
9898
99- (method)(f, Y, skipnull = true )
99+ (method)(f, Y, skipnull= true )
100100 println (" Method: $method (f, A) (~half missing entries, skip=true)" )
101101 print (" for NullableArray{Float64}: " )
102- @time ((method)(f, Y, skipnull = true ))
103- (method)(f, E, skipna = true )
102+ @time ((method)(f, Y, skipnull= true ))
103+ (method)(f, E, skipna= true )
104104 print (" for DataArray{Float64}: " )
105- @time ((method)(f, E, skipna = true ))
105+ @time ((method)(f, E, skipna= true ))
106106 println ()
107107 end
108108
@@ -135,13 +135,13 @@ function profile_reduce_methods()
135135
136136 for method in (sumabs,
137137 sumabs2)
138- (method)(Y, skipnull = true )
138+ (method)(Y, skipnull= true )
139139 println (" Method: $method (A) (~half missing entries, skip=true)" )
140140 print (" for NullableArray{Float64}: " )
141- @time ((method)(Y, skipnull = true ))
142- (method)(E, skipna = true )
141+ @time ((method)(Y, skipnull= true ))
142+ (method)(E, skipna= true )
143143 print (" for DataArray{Float64}: " )
144- @time ((method)(E, skipna = true ))
144+ @time ((method)(E, skipna= true ))
145145 println ()
146146 end
147147end
@@ -170,12 +170,12 @@ function profile_mapreduce(A, X, Y, D, E)
170170 println ()
171171
172172 println (" Method: mapreduce(f, op, A) (~half missing entries, skip=true)" )
173- mapreduce (f, Base .(:+ ), Y, skipnull = true )
173+ mapreduce (f, Base .(:+ ), Y, skipnull= true )
174174 print (" for NullableArray{Float64}: " )
175- @time (mapreduce (f, Base .(:+ ), Y, skipnull = true ))
176- mapreduce (f, Base .(:+ ), E, skipna = true )
175+ @time (mapreduce (f, Base .(:+ ), Y, skipnull= true ))
176+ mapreduce (f, Base .(:+ ), E, skipna= true )
177177 print (" for DataArray{Float64}: " )
178- @time (mapreduce (f, Base .(:+ ), E, skipna = true ))
178+ @time (mapreduce (f, Base .(:+ ), E, skipna= true ))
179179 println ()
180180end
181181
@@ -202,12 +202,12 @@ function profile_reduce(A, X, Y, D, E)
202202 println ()
203203
204204 println (" Method: reduce(f, op, A) (~half missing entries, skip=true)" )
205- reduce (Base .(:+ ), Y, skipnull = true )
205+ reduce (Base .(:+ ), Y, skipnull= true )
206206 print (" for NullableArray{Float64}: " )
207- @time (reduce (Base .(:+ ), Y, skipnull = true ))
208- reduce (Base .(:+ ), E, skipna = true )
207+ @time (reduce (Base .(:+ ), Y, skipnull= true ))
208+ reduce (Base .(:+ ), E, skipna= true )
209209 print (" for DataArray{Float64}: " )
210- @time (reduce (Base .(:+ ), E, skipna = true ))
210+ @time (reduce (Base .(:+ ), E, skipna= true ))
211211 println ()
212212end
213213
@@ -218,43 +218,43 @@ function profile_skip(skip::Bool)
218218 println (" f := identity, op := +" )
219219 println (" mapreduce(f, op, X; skipnull/skipNA=$skip ) (0 missing entries)" )
220220
221- mapreduce (identity, + , X, skipnull = skip)
221+ mapreduce (identity, + , X, skipnull= skip)
222222 print (" for NullableArray{Float64}: " )
223- @time (mapreduce (identity, + , X, skipnull = skip))
223+ @time (mapreduce (identity, + , X, skipnull= skip))
224224
225- mapreduce (identity, + , D, skipna = skip)
225+ mapreduce (identity, + , D, skipna= skip)
226226 print (" for DataArray{Float64}: " )
227- @time (mapreduce (identity, + , D, skipna = skip))
227+ @time (mapreduce (identity, + , D, skipna= skip))
228228
229229 println ()
230230 println (" reduce(op, X; skipnull/skipNA=$skip ) (0 missing entries)" )
231- reduce (+ , X, skipnull = skip)
231+ reduce (+ , X, skipnull= skip)
232232 print (" for NullableArray{Float64}: " )
233- @time (reduce (+ , X, skipnull = skip))
233+ @time (reduce (+ , X, skipnull= skip))
234234
235- reduce (+ , D, skipna = skip)
235+ reduce (+ , D, skipna= skip)
236236 print (" for DataArray{Float64}: " )
237- @time (reduce (+ , D, skipna = skip))
237+ @time (reduce (+ , D, skipna= skip))
238238
239239 println ()
240240 println (" mapreduce(f, op, X; skipnull/skipNA=$skip ) (~half missing entries)" )
241- mapreduce (identity, + , Y, skipnull = skip)
241+ mapreduce (identity, + , Y, skipnull= skip)
242242 print (" for NullableArray{Float64}: " )
243- @time (mapreduce (identity, + , Y, skipnull = skip))
243+ @time (mapreduce (identity, + , Y, skipnull= skip))
244244
245- mapreduce (identity, + , E, skipna = skip)
245+ mapreduce (identity, + , E, skipna= skip)
246246 print (" for DataArray{Float64}: " )
247- @time (mapreduce (identity, + , E, skipna = skip))
247+ @time (mapreduce (identity, + , E, skipna= skip))
248248
249249 println ()
250250 println (" reduce(op, X; skipnull/skipNA=$skip ) (~half missing entries)" )
251- reduce (+ , Y, skipnull = skip)
251+ reduce (+ , Y, skipnull= skip)
252252 print (" for NullableArray{Float64}: " )
253- @time (reduce (+ , Y, skipnull = skip))
253+ @time (reduce (+ , Y, skipnull= skip))
254254
255- reduce (+ , E, skipna = true )
255+ reduce (+ , E, skipna= true )
256256 print (" for DataArray{Float64}: " )
257- @time (reduce (+ , E, skipna = true ))
257+ @time (reduce (+ , E, skipna= true ))
258258 nothing
259259end
260260
0 commit comments