Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Add tilde characters #15

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -716,23 +716,23 @@ quiz(caption = "Have ago at these questions to test your knowledge.",
answer("The value of the regression coefficient is less than 0."),
answer("The value of the regression coefficient is not equal to 0.")),

question("For the regression model coded in R as $test_{score} ~ age$, how many regression coefficients are there?",
question("For the regression model coded in R as $test\\_score \\sim age$, how many regression coefficients are there?",
answer("1"),
answer("2", correct = TRUE),
answer("3"),
answer("4")),

question("For the regression model coded in R as $test_{score} ~ 1$, how many regression coefficients are there?",
question("For the regression model coded in R as $test\\_score \\sim 1$, how many regression coefficients are there?",
answer("1", correct = TRUE),
answer("2"),
answer("3"),
answer("4")),

question("For the full model $y ~ age + education_years$, which of these are valid null models? Select all that apply",
answer("$y ~ 1", correct = TRUE),
answer("$y ~ age + sex"),
answer("$y ~ age + status"),
answer("$y ~ education_years + age"))
question("For the full model $y \\sim age + education\\_years$, which of these are valid null models? Select all that apply",
answer("$y \\sim 1$", correct = TRUE),
answer("$y \\sim age + sex$"),
answer("$y \\sim age + status$"),
answer("$y \\sim education\\_years + age$"))
)
```

Expand Down