Welcome to my blog
Quarto
R
Author
Published

October 21, 2024

Hey there! πŸ‘‹

Welcome to my blog. Special thanks to Samantha Csik’s wonderful guide on setting up a blog on a Quarto website.

Don’t worry, I come in peace.


πŸ”Ž Viewing source code on this site

Data analyses in the blog posts on this site are usually conducted with the R coding language. To view the code that generates the analysis, click the β€œ> Code” dropdown button above each chunk.

There is also a button on the top right corner of every post with code-folding enabled to globally expand or collapse all code chunks.

Code Chunk Example

For example, the code that loads the iris dataset and generates the plot below can be expanded or collapsed by the β€œ> Code” dropdown button.

Code
boxplot(Sepal.Length~Species,
        data=iris,
        main='Sepal Length by Species',
        xlab='Species',
        ylab='Sepal Length',
        col='steelblue',
        border='black')

A boxplot of the iris dataset

It’s a useful feature of Quarto that allows for documents to be consumed easily by both technical and non-technical readers.

Happy reading 😁