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
Change DataSeries>>#summary to bring it more in line with Python's pandas describe() by adding Count and Stdev, renaming 1st Qu., Median, 3rd Qu. to 25%, 50% and 75%, as well as reordening the list.
Copy file name to clipboardExpand all lines: src/DataFrame/DataSeries.class.st
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1055,18 +1055,22 @@ DataSeries >> sum [
1055
1055
1056
1056
{ #category : #statistics }
1057
1057
DataSeries>> summary [
1058
-
"A data series is returned which is a statistical summary of the data series. With keys as different statistical measures and values as the values returned when those statistical measures are applied on the data series."
1058
+
"A data series is returned which is a statistical summary of the data series.
1059
+
With keys as different statistical measures and values as the values returned
1060
+
when those statistical measures are applied on the data series."
0 commit comments