Skip to content

Commit

Permalink
docs: update operations vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed2uiz committed Jan 17, 2024
1 parent e794419 commit 54b630f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions vignettes/operations.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ head(sparse)

### transpose
```{r}
t(sparse)
dbMatrix::t(sparse)
```

### colMeans
Expand Down Expand Up @@ -125,15 +125,16 @@ dim(dgc)
## dbDenseMatrix Operations

```{r, eval=TRUE, message=FALSE, warning=FALSE}
dense = sim_dbDenseMatrix()
# below is a convenience function to simulate a dbDenseMatrix
dense = dbMatrix::sim_dbDenseMatrix()
# preview
dense
```

### transpose
```{r}
t(dense)
dbMatrix::t(dense)
```

### colMeans
Expand Down

0 comments on commit 54b630f

Please sign in to comment.