Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see https://quarto.org.
Running Code
When you click the Render button a document will be generated that includes both content and the output of embedded code. You can embed code like this:
library(readxl) Performed <-read_excel("~/Performed.xlsx")View(Performed) summary(Performed)
library(readxl)plot( Performed$study_time_hours, Performed$final_exam_score,main ="Study Time vs Final Exam Score",xlab ="Study Time (Hours)",ylab ="Final Exam Score",pch =19)
plot( Performed$attendance_percent, Performed$final_exam_score,main ="Attendance vs Final Exam Score",xlab ="Attendance (%)",ylab ="Final Exam Score",pch =19)
You can add options to executable code like this
The echo: false option disables the printing of code (only output is displayed).