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
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -226,7 +226,7 @@ This dataset has 489 entries. Printing all these rows in order to understand how
226
226
5 | 7.147 5.33 18.7 760200.0
227
227
```
228
228
229
-
The resuld will be another data frame. `head` and `tail` messages are just shortcuts for `df rowsFrom: 1 to: 5` and `df rowsFrom: (df size - 5) to: df size`. But what if you want a different number of rows? You can do that using parametrized messages `head:` and `tail:` with a given number of rows.
229
+
The resuld will be another data frame. `head` and `tail` messages are just shortcuts for `df rowsFrom: 1 to: 5` and `df rowsFrom: (df numberOfRows - 5) to: df numberOfRows.`. But what if you want a different number of rows? You can do that using parametrized messages `head:` and `tail:` with a given number of rows.
0 commit comments