Skip to content

Commit

Permalink
Merge pull request #32 from ddotta/fix_equals
Browse files Browse the repository at this point in the history
fix: new function equals()
  • Loading branch information
ddotta authored Feb 23, 2024
2 parents e0e3711 + 92f60a8 commit 0c05205
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions book/content/data_manipulation/_series_methods.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ Caution, if two series are identical but one is named and the other is not then

```{r}
#| label: series-equal-Series
pl$Series(1:4)$series_equal(pl$Series(1:4))
pl$Series(1:4,name = "toto")$series_equal(pl$Series(1:4))
pl$Series(1:4)$equals(pl$Series(1:4))
pl$Series(1:4,name = "toto")$equals(pl$Series(1:4))
```

## R base
Expand Down

0 comments on commit 0c05205

Please sign in to comment.