# A simple calculation
values <- c(10, 20, 30, 40, 50)
mean(values)[1] 30
Michael Bolger
February 4, 2025
This is the inaugural post on my new blog. I’ve set up this site to share thoughts, analyses, and explorations at the intersection of finance and health.
Future posts will cover topics including:
One of the reasons I chose Quarto for this site is its ability to seamlessly integrate code and output. Here’s a simple example:
This makes it easy to share reproducible analyses directly in blog posts.
More content coming soon. Thanks for visiting!
@online{bolger2025,
author = {Bolger, Michael and Bolger, Michael},
title = {Welcome to {My} {Blog}},
date = {2025-02-04},
url = {https://bolger.ch/blog/posts/welcome/},
langid = {en}
}
---
title: "Welcome to My Blog"
description: "An introduction to this site and what to expect from future posts."
author: "Michael Bolger"
date: "2025-02-04"
categories:
- Meta
draft: false
---
## Hello and Welcome
This is the inaugural post on my new blog. I've set up this site to share thoughts, analyses, and explorations at the intersection of finance and health.
## What to Expect
Future posts will cover topics including:
- **Data Analysis**: Exploratory analyses and visualizations
- **Finance**: Healthcare economics, risk modeling, and portfolio analysis
- **Health**: Clinical data insights and health outcomes research
- **Technology**: Tools and workflows for reproducible research
## A Quick Example
One of the reasons I chose Quarto for this site is its ability to seamlessly integrate code and output. Here's a simple example:
```{r}
#| label: simple-example
#| echo: true
# A simple calculation
values <- c(10, 20, 30, 40, 50)
mean(values)
```
This makes it easy to share reproducible analyses directly in blog posts.
## Stay Tuned
More content coming soon. Thanks for visiting!