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
Add a startup::gui_dialogs() to control how R is making use of GUI dialogs:
startup::gui_dialogs()
gui_dialogs("off")
gui_dialogs("defaults")
gui_dialogs("on")
Settings that should be considered:
options(menu.graphics = FALSE)
options(askYesNo = NULL)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add a
startup::gui_dialogs()
to control how R is making use of GUI dialogs:gui_dialogs("off")
- avoid GUI dialogs as far as possiblegui_dialogs("defaults")
- use GUI dialogs according to the default settings (which differ in Rgui, RStudio Console, ...)gui_dialogs("on")
- use GUI dialogs as far as possibleSettings that should be considered:
options(menu.graphics = FALSE)
options(askYesNo = NULL)
The text was updated successfully, but these errors were encountered: