An introduction to NAPdown
2022-03-01
Chapter 1 Getting started
1.1 Prerequisites
- You have installed R (https://cran.microsoft.com/)
- You have installed RStudio (https://www.rstudio.com/products/rstudio/download/)
- You have signed up for an account on GitHub (https://github.com/)
If you do not meet the above requirements, follow the steps outlined below to do so.
1.1.1 Installing R
Go to CRAN
Click on ‘Download R for Windows’ (or the OS you are using)
3. On the next window click on ‘install R for the first time’
- Click on ‘Download R x.x.x for windows’ > x.x.x = current R version
- Navigate to your download folder and run the .exe file that you downloaded and follow the installation prompts
- When prompted to ‘select components to install,’ select all
1.1.2 Install RStudio
- Go to RStudio
- Click on the download button for free version of RStudio Desktop (or any other desired version)
- Click on ‘DOWNLOAD RSTUDIO FOR WINDOWS’
- Run the .exe file that you downloaded and follow the installation prompts
Most of the installation settings may be left as default
1.1.3 Signing up on GitHub
- Go to GitHub.com
- Enter you email address
- Click ’Sign up for GitHub
- Follow the prompts to create a password and username
- Continue with the prompts to verify identity and email and finish set up.
1.2 Opening a markdown file
- Launch your r/studio app. Your rstudio workspace should look more or less similar to this:
If your rstudio opens up with 4 windows instead of 3, skip next step.
2. From the main menu, go to File->>New File->>R Markdown.
You should have a window like this:
3. Fill in the details for your document title and author. Leave the rest as default.
4. Click Ok.
This opens up your 4th rstudio window with an rmarkdown script.
Now your app area should look more or less like this;
The arrangement may however be different. If so, do not worry, it’s just semantics.
As you might have seen, you may open other scripts such as R, python, SQL etc in similar manner.
1.2.1 Rstudio windows explained:
The Source
This is your scripting area.
You may write, edit and run your code from here.The Console
All processing in r happens here. You may this is the r kitchen. When you run your code, this is where it is evaluated.
You may also use the console to write and execute your code. However, you can not save your code, nor can you edit it (you will have to rewrite it). Thus, it is always advisable to write your code in the script/source area.
The Environment
This panel holds your data objects and their metadata. As you create or add new objects into your project, they will appear in this window. You may view and remove objects. It also contains the ‘History’ tab from which you may view all your r processing history.
The Files/Plots/Packages/Help Panel
This panel provides a shortcut/alternative to different functions such as to access your project files, to view plots from your code evaluations, install packages and access the Help resource. You may add/remove items here but we will learn that much later. For now we leave it as is.
1.3 Installing packages
Options:
1. From the console
After the greater than (>) sign, write command install.packages("package name")
and hit enter on your keyboard.
See example;

install packages from console
2. In script window
Inside your script write command install.packages("package name")
Click on ‘Run’ (Run button is on the top right of your source panel).
Alternatively, if your write your command in a code chunk, you may hit the ‘Play’ button on far right of your code chunk. See example;

install packages from script wnindow
*We see more about code chunks in the next chapter.
3. From the menu bar
From the menu bar, go the the tab ‘Tools’ and select ‘Install Packages.’
You should see a window like this one:

install packages from menu bar
In the ‘Install from’ field, select ‘Repository (CRAN),’ then enter the name(s) of packages to be installed.
Leave everything else as default. Click Install.
4. From Files/Plots/Packages/Help Panel
Click on the ‘Packages’ tab. There are 2 tabs under this, Install & Update.
Click on Install.

install packages
If the ‘Install from’ is not set to ‘Repository (CRAN),’ set it so, and enter name(s) of packages to be installed.
Leave everything else as default. Click Install.
Note:Packages can only be installed once. To mean, if you close your r/rstudio app and come back to it the next day/session, you do not need to install the packages you already installed in your previous session. You will only need to load their libraries (see next section)
1.3.1 Removing/un-installing packages
To remove a package use command remove.packages("package name")
remove packages
1.4 Loading Libraries
To be able to make use of the packages installed, you need to call their libraries. Most libraries take the name of the package. For instance, for the package rmakdown
, the respective library is rmarkdown
.To call the rmarkdown library, use command library(rmarkdown)
.
So in general to load/call libraries use command library(name of library)
.
load library
You may load libraries in the console or in your script.
Note:Unlike packages,library functions expire when you close a project or end a session. Therefore, each time you open an r session, you have to load/call relevant libraries