Computer Science, asked by nnetha2200, 1 year ago

Which command is used to quit from R ?(a) quit()
(b) q()
(c) exit()
(d) close()

Answers

Answered by HibA56
0
hey mate here is ur answer..

the command is used to quit from R is " closed" command.

.
.
.
hope it's help you
keep smiling on✌
.
.
.
.
.
HibA
Answered by smartbrainz
1

The commads quit() and q() are used to quit from R.

Explanation:

The current R session can be terminated using quit() or it's alias q() command. The following is the syntax and argument details of the function.

Syntax:

quit(save = "default", status = 0, runLast = TRUE)

  q(save = "default", status = 0, runLast = TRUE)

Arguments:

  • save - a character string indicating whether the environment (workspace) should be saved, one of "no", "yes", "ask" or "default".
  • status - the (numerical) error status to be returned to the operating system, where relevant. Conventionally 0 indicates successful completion.
  • runLast - to specify whether.Last() be executed or not

Similar questions