Explanation 1
Open Posit Cloud and create or sign in to an account.
Loading
Lesson 6 of 6
Use browser-based RStudio when local installation is unavailable and solve common setup problems safely.
Browser option
Posit Cloud runs RStudio in a web browser. It is useful for students using Chromebooks, shared computers, or devices on which software installation is restricted.
Explanation 1
Open Posit Cloud and create or sign in to an account.
Explanation 2
Create a new RStudio project and upload the STATLAB CSV or extracted course files.
Explanation 3
Install required packages once within that project, then run the same R commands used in this module.
Resource
Open the official browser-based RStudio service.
Open Posit CloudTerminology
Close RStudio, install R, and then reopen RStudio. If necessary, restart the computer.
R must be installed before RStudio.
Install the missing package and run the script again.
install.packages(c("dplyr", "ggplot2"))
Confirm that the ZIP has been extracted. Use file.choose() to select the CSV manually.
macro <- read.csv(file.choose())
Place the cursor on the correct line and run it.
Press Ctrl + Enter on Windows or Command + Enter on macOS.
Use Posit Cloud or contact the institution's IT department.
Do not attempt to bypass administrator restrictions.
Run sessionInfo() and copy the output when requesting technical support.
sessionInfo()
Copyable code
install.packages(c("dplyr", "ggplot2"))Copyable code
sessionInfo()