Skip to content

Commit

Permalink
Minor changes attempting to correct render error
Browse files Browse the repository at this point in the history
  • Loading branch information
sj-io committed Jun 30, 2024
1 parent 84f5acd commit 9fbe486
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 39 deletions.
8 changes: 5 additions & 3 deletions _freeze/mk8dx/speedrun/execute-results/html.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ execute:
website:
title: "sarah.fyi"
search: false
site-url: https://sarah.fyi
repo-url: https://github.com/sj-io/sarahFYI
navbar:
title: false
background: none
Expand Down
36 changes: 0 additions & 36 deletions mk8dx/speedrun.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -421,39 +421,3 @@ violin_48_p <- ggplotly(violin_48, tooltip = "text") |>
)
config(violin_48_p, displayModeBar = FALSE)
```

# Cups

```{r}
the_cups <- runs |> filter(str_ends(category, " Cups"))
the_cups <- the_cups |> select(category, individual_cup, everything())
the_cups <- the_cups |> left_join(tracks, by = c("segment_name" = "trk"))
```

```{r warning=FALSE, fig.height=8, fig.width=4.5, fig.dpi=300}
#| title: "Time Distributions"
complete_cups <- the_cups |>
filter(!is.na(segment_name) & trk_ID <= 48) |>
arrange(trk_ID) |>
mutate(segment_name =
if_else(!is.na(console), str_c(track, " [", console, "]"), track) |> fct_inorder()) |>
mutate(
worst_segment_real_time = max(segment_real_time),
sd = sd(segment_real_time),
attempts = n(),
label = paste0(
"<b>", segment_name, "</b>"
),
.by = "segment_name")
cups_violin <- complete_cups |> violin_style(segment_name, segment_real_time)
ggplotly(cups_violin)
```


```{r}
#| title: "Cup Table"
reactable(complete_cups)
```

0 comments on commit 9fbe486

Please sign in to comment.