RStudio and Quarto
How to Analyze Data with RStudio: Step by Step
Create a new folder for your project.
Open RStudio → go to File → New File → Quarto Document…
Load all required packages in your Quarto file using
library()commands.Import your dataset using functions like
read.csv()orread_excel().Analyze the data using functions from packages such as
dplyr,ggplot2, andsummary().Export the results or generate a report using Quarto’s render features.