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 21d52b3 commit ef1022cCopy full SHA for ef1022c
README.md
@@ -64,24 +64,28 @@ weather := DataFrame withRows: #(
64
```Smalltalk
65
weather removeRowAt: 3.
66
```
67
+<img width="700" src="img/weatherDfRemoveRow.png">
68
69
### Adding a row to the data frame
70
71
72
weather addRow: #(-1.2 true snow) named:''.
73
74
+<img width="700" src="img/weatherDfAddRow.png">
75
76
### Replacing the data in the first row and third column with 'snow'
77
78
79
weather at:1 at:3 put:#snow.
80
81
+<img width="700" src="img/weatherDfReplaceData.png">
82
83
### Transpose of the data frame
84
85
86
weather transposed.
87
88
+<img width="700" src="img/weatherDfTranspose.png">
89
90
## DataFrame Booklet
91
0 commit comments