Skip to content

Commit ad148d3

Browse files
committed
Update README.md [ci skip]
1 parent 3bfea33 commit ad148d3

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,3 +292,16 @@ If you rather want to select all the columns of a data frame, use the `selectAll
292292
df selectAllWhere: [ :species :sepal_width |
293293
species = #setosa and: sepal_width = 3 ].
294294
```
295+
296+
This query will return a data frame will all 5 columns of Iris dataset and 6 rows that satisfy the given condition.
297+
298+
```smalltalk
299+
| sepal_length sepal_width petal_length petal_width species
300+
----+---------------------------------------------------------------
301+
2 | 4.9 3 1.4 0.2 setosa
302+
13 | 4.8 3 1.4 0.1 setosa
303+
14 | 4.3 3 1.1 0.1 setosa
304+
26 | 5 3 1.6 0.2 setosa
305+
39 | 4.4 3 1.3 0.2 setosa
306+
46 | 4.8 3 1.4 0.3 setosa
307+
```

0 commit comments

Comments
 (0)