Introduction

This FAQ page has answers to some of the more common issues students run into with R. If your question is not answered here, either search your error message on StackOverflow or reach out to your professor/TA.

Package Errors

When you try to call library(<PACKAGE>) on a package that has not yet been installed into RStudio, you will receive the following error message

To fix this error message, run install.packages('MissingPackage') and replace ‘MissingPackage’ with the package you are trying to work with.

Return to Learn R Tutorials Page

Click here.