Skip to content

Commit cbf3b2a

Browse files
Update README.md
1 parent 3907b9a commit cbf3b2a

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,30 @@ weather := DataFrame withRows: #(
5959
(3.2 true rain)).
6060
```
6161

62+
### Removing the third row of the data frame
63+
64+
```Smalltalk
65+
weather removeRowAt: 3.
66+
```
67+
68+
### Adding a row to the data frame
69+
70+
```Smalltalk
71+
weather addRow: #(-1.2 true snow) named:''.
72+
```
73+
74+
### Replacing the data in the first row and third column with 'snow'
75+
76+
```Smalltalk
77+
weather at:1 at:3 put:#snow.
78+
```
79+
80+
### Transpose of the data frame
81+
82+
```Smalltalk
83+
weather transposed.
84+
```
85+
6286
## DataFrame Booklet
6387

6488
For more information, please read [Data Analysis Made Simple with Pharo DataFrame](https://github.com/SquareBracketAssociates/Booklet-DataFrame) - a booklet that serves as the main source of documentation for the DataFrame project. It describes the complete API of DataFrame and DataSeries data structures, and provides examples for each method.

0 commit comments

Comments
 (0)