Skip to content

Commit cede66c

Browse files
committed
updated docs
1 parent 0ceac0e commit cede66c

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

man/plot_boxplot.Rd

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/plot_density.Rd

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/plot_scatterplot.Rd

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/testthat/test-threedots.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ test_that("plot_density works with mapped aesthetic (fill)", {
7272
expect_invisible(plot_density(iris, fill = Species))
7373
})
7474

75-
test_that("plot_density works with constant aesthetic (alpha)", {
76-
expect_invisible(plot_density(iris, alpha = 0.4))
75+
test_that("plot_density works with constant aesthetic (size)", {
76+
expect_invisible(plot_density(iris, size = 4))
7777
})
7878

7979
test_that("plot_density works with both mapped and constant aesthetics", {
80-
expect_invisible(plot_density(iris, fill = Species, alpha = 0.3))
80+
expect_invisible(plot_density(iris, fill = Species, alpha = 0.3, size=4))
8181
})

0 commit comments

Comments
 (0)