Skip to content

Commit 917e4d2

Browse files
committed
update config
1 parent 6aa1e10 commit 917e4d2

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

_config.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ parse:
3232
myst_enable_extensions:
3333
- html_image
3434
- dollarmath
35+
- linkify
3536
myst_url_schemes: [mailto, http, https] # URI schemes that will be recognised as external URLs in Markdown links
37+
myst_dmath_double_inline: true # Allow display math ($$) within an inline context
3638

3739
#######################################################################################
3840
# HTML-specific settings
@@ -72,6 +74,7 @@ repository:
7274
#######################################################################################
7375
# Advanced and power-user settings
7476
sphinx:
75-
extra_extensions: # A list of extra extensions to load by Sphinx (added to those already used by JB).
76-
config: # key-value pairs to directly over-ride the Sphinx configuration
77+
extra_extensions : # A list of extra extensions to load by Sphinx (added to those already used by JB).
78+
local_extensions : # A list of local extensions to load by sphinx specified by "name: path" items
79+
config : # key-value pairs to directly over-ride the Sphinx configuration
7780

content/GLM_Single_Subject_Model.ipynb

+2-4
Original file line numberDiff line numberDiff line change
@@ -1112,13 +1112,11 @@
11121112
]
11131113
},
11141114
{
1115-
"cell_type": "code",
1116-
"execution_count": null,
1115+
"cell_type": "markdown",
11171116
"metadata": {},
1118-
"outputs": [],
11191117
"source": [
11201118
"```{note}\n",
1121-
"Multicollineary as discussed above can lead to unstable estimates of the regression coefficients, particularly for the regressors of interest. Multicollinearity between covariates of no interest tends to be less of a problem because we generally are just interested in explaining noise in our model and are rarely interested in interpreting the individual covariate beta coefficients. However, in cases of extreme collinearity, the model may become rank deficient, which can lead to difficulty with even fitting the model. \n",
1119+
"As discussed above, multicollineary can lead to unstable estimates of the regression coefficients, which is particularly important to keep in mind for regressors of interest. Multicollinearity between covariates of no interest tends to be less of a problem because we generally are just interested in explaining noise in our model and are rarely interested in interpreting the individual covariate beta coefficients. However, in cases of extreme collinearity, the model may become rank deficient, which can lead to difficulty with even fitting the model. \n",
11221120
"\n",
11231121
"A simple fix to this problem is to use the `.clean()` method. This method will remove any columns that are perfectly collinear with other columns in the design matrix.\n",
11241122
"```"

0 commit comments

Comments
 (0)