A Tutorial on Quarto

Author

SZhang

::: panel-tabset ## Show

Student Data
Name Quiz1 Quiz2
Tom 98 95
Annie 99 94
Cindy 96 100
Chad 89 93
Alice 85 100
David 78 97
Bill 88 90
Wendy 96 87
Ting 86 94

Explain

This data is from…

Click here to see more examples

You really should work hard …

Analysis

Name = c("Tom", "Annie", "Cindy", "Chad", "Alice", "David", "Bill", "Wendy", "Ting")
Quiz1=c(98, 99, 96, 89, 85, 78, 88,96,86)
Quiz2 = c(95, 94, 100, 93, 100, 97, 90, 87, 94)
DF = data.frame(Name, Quiz1, Quiz2)

boxplot(Quiz1, Quiz2, names = c("Quiz1", "Quiz2"))