| beep | R Documentation | 
beep plays a short sound which is useful if you want to get notified, 
for example, when a script has finished. As an added bonus there are a number 
of different sounds to choose from.
beep(sound = 1, expr = NULL)
| sound | character string or number specifying what sound to be played by either specifying one of the built in sounds, specifying the path to a wav file or specifying an url. The default is 1. Possible sounds are: 
  If  | 
| expr | An optional expression to be executed before the sound. | 
If beep is not able to play the sound a warning is issued rather than 
an error. This is in order to not risk aborting or stopping the process that
you wanted to get notified about.
# Play a "ping" sound
beep()
## Not run: 
# Play a fanfare instead of a "ping".
beep("fanfare")
# or
beep(3)
# Play a random sound
beep(0)
# Update all packages and "ping" when it's ready
update.packages(ask=FALSE); beep()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.