2.5 options() Command
You can control the global options of your R workspace.
The following command disables printing your results in scientific notation.
options(scipen = 999)
The following command extends the number of lines of printing your results in the console.
options(max.print=999999)
The following command removes the stars from regression output showing the statistical significance.
- options(show.signif.stars=FALSE)