You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Returns the number of nil values in the data series"
242
+
243
+
^selfcount: [ :each | each isNil ]
244
+
]
245
+
246
+
{ #category : #statistics }
247
+
DataSeries>> countNonNils [
248
+
"Returns the number of non-nil values in the data series"
249
+
250
+
^selfcount: [ :each | each isNotNil ]
251
+
]
252
+
239
253
{ #category : #statistics }
240
254
DataSeries>>crossTabulateWith: aSeries [
241
255
"A DataFrame is returned which is useful in quantitatively analyzing the relationship of values in one data series with the values in another data series"
0 commit comments