Skip to content

Commit

Permalink
docs(sessions): ✏️ we can use the Markdown superscript notation for t…
Browse files Browse the repository at this point in the history
…he tables
  • Loading branch information
lwjohnst86 committed Jan 16, 2025
1 parent 073d01e commit ca66c7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sessions/split-apply-combine.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ tidied_post_meal_data |>
group_by(Group) |>
summarise(
"Mean Age (yrs)" = round(mean(Age), 1),
"Mean BMI (kg/m^2)" = round(mean(BMI), 1)
"Mean BMI (kg/m^2^)" = round(mean(BMI), 1)
) |>
ungroup() |>
knitr::kable()
Expand All @@ -246,7 +246,7 @@ tidied_post_meal_data |>
group_by(Group) |>
summarise(
"Mean Age (yrs)" = round(mean(Age), 1),
"Mean BMI (kg/m^2)" = round(mean(BMI), 1)
"Mean BMI (kg/m^2^)" = round(mean(BMI), 1)
) |>
ungroup() |>
knitr::kable()
Expand All @@ -261,7 +261,7 @@ tidied_post_meal_data |>
group_by(Group) |>
summarise(
"Mean Age (yrs)" = round(mean(Age), 1),
"Mean BMI (kg/m^2)" = round(mean(BMI), 1)
"Mean BMI (kg/m^2^)" = round(mean(BMI), 1)
) |>
ungroup() |>
knitr::kable()
Expand Down

0 comments on commit ca66c7b

Please sign in to comment.