If you restart your R session, it will reset the options to the default values.
Options are saved in a list, and calling options()
will show that list.
You can save the default options after restarting R:
backup_options <- options()
You can make any changes you need, and then to revert to the default options:
options(backup_options)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…