Skip to content

Instantly share code, notes, and snippets.

View mattsecrest's full-sized avatar
👾

Matt Secrest mattsecrest

👾
View GitHub Profile
@mattsecrest
mattsecrest / keybindings.json
Created September 26, 2025 16:07
keybindings for windows R
// Place your key bindings in this file to override the defaults
[
// --- R Editor Shortcuts ---
// Rule #1: Pipe operator '|>' with Ctrl+Shift+M
{
"key": "ctrl+shift+m",
"command": "editor.action.insertSnippet",
"when": "editorTextFocus && (editorLangId == 'r' || editorLangId == 'rmd' || editorLangId == 'quarto')",
"args": {
"snippet": " |> "
@mattsecrest
mattsecrest / logregsim.R
Created July 25, 2022 18:49
logreg_cis
f1 <- .35
exp <- rbinom(20, 1, f1)
set.seed(123)
p1 <- map(
c(0,.1,.2,.3,.4,-.1,-.2,-.3),
function(z) {
tidy(
glm(
out ~ group,
binomial(link = "logit"),