We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For some functions such as map_ereefs the map gets plotted twice, unless the user sets suppress_print, e.g.
map_ereefs
suppress_print
This only happens when you do, e.g.
map_ereefs(target_date = c(2019, 2, 28))
instead of e.g.
p <- map_ereefs(target_date = c(2019, 2, 28))
The current solution to this is
map_ereefs(target_date = c(2019, 2, 28), suppress_print = TRUE)
But that goes against ggplots default behaviour to not print when assigned to an object
The text was updated successfully, but these errors were encountered:
setting suppress_print = TRUE by default to adhere to ggplots intende…
54c79c1
…d behaviour; contributes to #21
removed automatic printing of ggplot in plot_ereefs_slice; similar to…
cf08ad5
… issue #21
dbarneche
No branches or pull requests
For some functions such as
map_ereefs
the map gets plotted twice, unless the user setssuppress_print
, e.g.This only happens when you do, e.g.
instead of e.g.
The current solution to this is
But that goes against ggplots default behaviour to not print when assigned to an object
The text was updated successfully, but these errors were encountered: