This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
tj mahr 🤘
tjmahr.com
did:plc:tpgnsvgqsu5b752uud3wmtja
what have i reinvented here
nullsafe_map <- function(x, f, ...) {
if (is_null(x)) NULL else f(x, ...)
}
data_auc |>
nullsafe_map(prepare_auc_data) |>
nullsafe_map(prepare_auc_layer)
2024-01-11T19:14:22.025Z