Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ If you want to include it as part of your `dplyr` / `magrittr` pipeline, you can
```R
library(dplyr)
iris %>%
tbl_df() %>%
as_tibble() %>%
filter( Sepal.Width > 3 ) %>%
rpivotTable()
```
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ test_that("data is not changed",{
rpivotTable( data.frame(x=1:10,y=LETTERS[1:10]) )$x$data
, data.frame(x=1:10,y=LETTERS[1:10]))
expect_is(
rpivotTable(tbl_df(iris))$x$data
rpivotTable(as_tibble(iris))$x$data
, "tbl_df"
)
expect_identical(
Expand Down
2 changes: 1 addition & 1 deletion vignettes/rpivotTableIntroduction.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Or if you want to include it as part of your `dplyr` / `magrittr` pipeline, you
library(dplyr)
# )
iris %>%
tbl_df %>%
as_tibble %>%
filter( Sepal.Width > 3 & Sepal.Length > 5 ) %>%
rpivotTable(rows="Sepal.Width", rendererName="Treemap")
```
Expand Down