Skip to content

Commit

Permalink
another docs bug
Browse files Browse the repository at this point in the history
  • Loading branch information
s3alfisc committed Dec 28, 2024
1 parent 821d9b3 commit c3feec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/quickstart.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ fit.wald_test(R=R1, q=q1)

```{python}
data_glm = pf.get_data(N=100, seed = 170)
data_glm["Y"] = np.where(data["Y"] > 0, 1, 0)
data_glm["Y"] = np.where(data_glm["Y"] > 0, 1, 0)
fit_gaussian = pf.feglm(fml = "Y~X1", data = data_glm, family = "gaussian")
fit_logit = pf.feglm(fml = "Y~X1", data = data_glm, family = "logit")
Expand Down

0 comments on commit c3feec9

Please sign in to comment.