Learning Objectives
- Describe the purpose of RStudio’s script, console, environment, and file/plot/help windows.
- Create an R project.
- Organize files and directories for a set of analyses as an R Project.
- Use the built-in RStudio help interface to search for more information on R functions.
Start RStudio – Let’s start by learning about our tool.
File
menu, click on New project
, choose New directory
, then Empty project
~/data-carpentry
)Create project as a sub-directory of
box is where you want the working directory created. Use the Browse
button to navigate folders if changes are needed.Files
tab on the right of the screen, click on New Folder
and create a folder named data
within your newly created working directory. (e.g., ~/data-carpentry/data
)data-carpentry-script.R
)Your working directory should now look like this:
There are two main ways of interacting with R: using the console or by using script files (plain text files that contain your code).
The console window (in RStudio, the bottom left panel) is the place where R is waiting for you to tell it what to do, and where it will show the results of a command. You can type commands directly into the console, but they will be forgotten when you close the session. It is better to enter the commands in the script editor, and save the script. This way, you have a complete record of what you did, you can easily show others how you did it and you can do it again later on if needed. You can copy-paste into the R console, but the Rstudio script editor allows you to ‘send’ the current line or the currently selected text to the R console using the Ctrl-Enter
shortcut.
If R is ready to accept commands, the R console shows a >
prompt. If it receives a command (by typing, copy-pasting or sent from the script editor using Ctrl-Enter
), R will try to execute it, and when ready, show the results and come back with a new >
prompt to wait for new commands.
If R is still waiting for you to enter more data because it isn’t complete yet, the console will show a +
prompt. It means that you haven’t finished entering a complete command. This is because you have not ‘closed’ a parenthesis or quotation. If you’re in Rstudio and this happens, click inside the console window and press Esc
; this should help you out of trouble.
R is a versatile, open source programming/scripting language that’s useful both for statistics but also data science. Inspired by the programming language S.
You should separate the original data (raw data) from intermediate datasets that you may create for the need of a particular analysis. For instance, you may want to create a data/
directory within your working directory that stores the raw data, and have a data_output/
directory for intermediate datasets and a figure_output/
directory for the plots you will generate.
Data Carpentry,
2017. License. Contributing.
Questions? Feedback?
Please file
an issue on GitHub.
On
Twitter: @datacarpentry