This page will list common questions and problems you might encounter during the course.
A. Installing
B. Submitting labs
C. The R console
D. Error messages
E. Getting more help
Help getting your computer set up to do the course.
Link the page here
To download the SWIRL package, copy and paste this into the R console.
You should only need to do this once.
install.packages("swirl")
You will need to run this every time we update the lessons.
First, load the swirl package and uninstall previous versions of this course.
library(swirl)
uninstall_all_courses()
Then delete your progress in any current lesson.
You will need to enter the user name you were using for the SWIRL lesons, in quotes.
delete_progress("USER")
Now, you can install the whole course again.
install_course_github('intro2r', 'swirl_courses', multi = TRUE)
And start SWIRL …
swirl()
# Copy and paste this first:
# get access to swirl library
library(swirl)
# uninstall all courses; the '1' tells R that yes, you do want to uninstall.
uninstall_all_courses(1)
# you will need to enter your user name here ...
# delete your progress (replace 'USER' with the name you use in SWIRL)
delete_progress("USER")
# Re-install the course, with updated lessons
install_course_github('intro2r', 'swirl_courses', multi = TRUE)
# start SWIRL
swirl()
You will need to write R code to answer each of the questions.
This should be a .R or .txt file saved on your computer, written in the text editor panel of RStudio (or any other text editor).
Please format your answers as follows:
Copy and paste each question, commented out with #
. This ensures that we know which answer corresponds to which question.
Write your R code answer below each question.
It should look something like this:
# LAB: Unit 1. Lab 1
# Your Name # Put your name here
# 1. Add 7 and 3,456.
7 + 3456
# 2. Assign this value to an object
x <- 7 + 3456
Please do not copy the code from the console, as the lines will contain ‘>’, which will cause your code to fail on our computer when we test it.
i. Log into Canvas.
ii. Go to the Assignments page.
iii. Under ‘Labs’, you should find the correct assignment.
iv. Copy and paste your R code into the text box, or upload your .R or .txt file.
v. Click ‘Submit Assignment’.
You are permitted to submit your answers as many times as you like within each Unit.
Answers will be graded two or three times a week and re-opened if you submit early.
Each lab will close at its respective deadline (see Canvas).
Final grades for each lab will be computed and entered into the Canvas gradebook at the end of each Unit.
The hash or pound symbol (#
) is used in R to indicate a ‘comment’, or a line in the file that is not evaluated by R when it is pasted in to the Console.
You can use comments to describe what you code is doing so that in 6 months time you can still understand what you meant!
You can also use comments to “comment-out” a line of code that you want to keep in the file but not run.
You will come across many instances where the data you display in the R console are too big for the window and over-run a single line.
It will always display [1]
for the first element.
Then, R tells you how far along that sequence of data you are when the next line starts.
When the R console displays an arrow (>), that tells you that R is ready. You can enter code.
The plus symbol (+) on the left of the console means that R is waiting.
The plus sign (+) tells you that R is waiting (very patiently) for something else from you …
Normally you will need to close out a function.
In any case, you can press ESC to terminate that code, which will not run, and return to the arrow prompt.
Here, R cannot find the function command that you have written.
Either it is not loaded, or most likely, you have mispelled it.
Here, the object name that you have typed in is not recognised.
Please check and try again!
Typing a question mark, followed by the function name, will pop up the help file on that function.
E.g.,
?mean
Many times, you will want to do something in R that is not covered in this course.
The best way to find out how to do it, is to type R thing you want to know
into a search engine.
This will likely return a series of blogs, forums, and R sites that address these issues.
Specific sites also cater to such questions.
Stackexchange and CrossValidated are good places to search for help, or ask a question that has not been asked before.