We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02f47db commit ebba468Copy full SHA for ebba468
README.md
@@ -52,7 +52,7 @@ df add: #('Barcelona' 1.609 true).
52
This way is the best for creating simple examples for testing since you can see how the data will be arranged in your data frame.
53
54
```smalltalk
55
-df := DataFrame rows: #(
+df := DataFrame fromRows: #(
56
('Barcelona' 1.609 true)
57
('Dubai' 2.789 true)
58
('London' 8.788 false)).
@@ -62,7 +62,7 @@ df := DataFrame rows: #(
62
We can do the same by passing an array of columns
63
64
65
+df := DataFrame fromColumns: #(
66
('Barcelona' 'Dubai' 'London')
67
(1.609 2.789 8.788)
68
(true true false)).
0 commit comments