# This script file window has notes and R commands, # from the file `firstSteps.r'. When this window # has the focus, 5 icons are shown: `Open script', # `Save script', `Run line or selection', # `Return focus to console', and `Print' # To send code (e.g., that below) to R, highlight # it & click on the `Run line or selection' icon. austpop <- read.table("austpop.txt", header=T) # "austpop.txt" must be in the working directory. austpop names(austpop) plot(ACT ~ Year, data=austpop, pch=16) 2+2 sqrt(10) 2*3*4*5