Skip to content

Commit

Permalink
fix for #53
Browse files Browse the repository at this point in the history
  • Loading branch information
kassambara committed Aug 12, 2018
1 parent a427fc2 commit a8eb50e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
- New argument `ci` added in `ggerrorplot()` [@abrar-alshaer, #94](https://github.com/kassambara/ggpubr/issues/94)

## Bug fixes


- Now, adding a `size` option to ggscatter `add.params` is supported [@retrogenomics, #94](https://github.com/kassambara/ggpubr/issues/53).

# ggpubr 0.1.7

Expand Down
2 changes: 1 addition & 1 deletion R/ggscatter.R
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ ggscatter_core <- function(data, x, y,
.args <- .geom_exec(NULL, data = data,
se = conf.int, level = conf.int.level,
color = add.params$color, fill = add.params$fill,
linetype = add.params$linetype,
linetype = add.params$linetype, size = add.params$size,
fullrange = fullrange)

mapping <- .args$mapping
Expand Down

0 comments on commit a8eb50e

Please sign in to comment.