Home About us Mathematical Epidemiology Rweb EPITools Statistics Notes Web Design Search Contact us |
We are working with the command line interface to the R interpreter.
Working with R in this way is much like using a desk calculator. You type an expression for R to evaluate. R reads the expression, evaluates it, and prints the result.
How you start up R depends on your computer. On many systems you may simply click or double click on an icon representing the program R.
When you finish an R session, you may quit by typing q(), the quit function. Depending on your system, you may be able to quit by using a menu interface.
When you quit an R session, R gives you an opportunity to save your session. If you decline to save the workspace, then the session is lost and R will not remember what you did next time you begin. If you agree to save the session, then R will start next time where you left off this time.
Exercise. Start the R interpreter and see that it is working properly. Then exit by using the quit function q().