Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnMount committed May 30, 2020
1 parent acf6085 commit f0c3acb
Show file tree
Hide file tree
Showing 13 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion extras/VariablePruning/Variable_Selection.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ mk_fun_p_data_given_params <- function(params, data, sd_noise) {
}
```

`mk_fun_p_data_given_params` realizes the probability model we discussed before: a model is plausible if `data$y - (pi$beta_1 * data$x + pi$beta_0)` is small.All of the definitions and math are to justify this block of code. `mk_fun_p_data_given_params` embodies the generative model illustrated in the following dependency diagram. The only important bit is the starement `ei <- data$y - (pi$beta_1 * data$x + pi$beta_0)`.
`mk_fun_p_data_given_params` realizes the following probability model: parameterss are plausible if `data$y - (pi$beta_1 * data$x + pi$beta_0)` is small.All of the definitions and math are to justify this block of code. `mk_fun_p_data_given_params` embodies the generative model illustrated in the following dependency diagram. The only important bit is the starement `ei <- data$y - (pi$beta_1 * data$x + pi$beta_0)`.

<p/><img src="ClassicModel.png"><p/>

Expand Down
13 changes: 6 additions & 7 deletions extras/VariablePruning/Variable_Selection.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,12 @@ mk_fun_p_data_given_params <- function(params, data, sd_noise) {
}
```

`mk_fun_p_data_given_params` realizes the probability model we discussed
before: a model is plausible if `data$y - (pi$beta_1 * data$x +
pi$beta_0)` is small.All of the definitions and math are to justify this
block of code. `mk_fun_p_data_given_params` embodies the generative
model illustrated in the following dependency diagram. The only
important bit is the starement `ei <- data$y - (pi$beta_1 * data$x +
pi$beta_0)`.
`mk_fun_p_data_given_params` realizes the following probability model:
parameterss are plausible if `data$y - (pi$beta_1 * data$x + pi$beta_0)`
is small.All of the definitions and math are to justify this block of
code. `mk_fun_p_data_given_params` embodies the generative model
illustrated in the following dependency diagram. The only important bit
is the starement `ei <- data$y - (pi$beta_1 * data$x + pi$beta_0)`.

<p/>

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion extras/VariablePruning/Variable_Selection_w_Appendices.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ mk_fun_p_data_given_params <- function(params, data, sd_noise) {
}
```

`mk_fun_p_data_given_params` realizes the probability model we discussed before: a model is plausible if `data$y - (pi$beta_1 * data$x + pi$beta_0)` is small.All of the definitions and math are to justify this block of code. `mk_fun_p_data_given_params` embodies the generative model illustrated in the following dependency diagram. The only important bit is the starement `ei <- data$y - (pi$beta_1 * data$x + pi$beta_0)`.
`mk_fun_p_data_given_params` realizes the following probability model: parameters are plausible if `data$y - (pi$beta_1 * data$x + pi$beta_0)` is small.All of the definitions and math are to justify this block of code. `mk_fun_p_data_given_params` embodies the generative model illustrated in the following dependency diagram. The only important bit is the starement `ei <- data$y - (pi$beta_1 * data$x + pi$beta_0)`.

<p/><img src="ClassicModel.png"><p/>

Expand Down
Binary file modified extras/VariablePruning/Variable_Selection_w_Appendices.pdf
Binary file not shown.

0 comments on commit f0c3acb

Please sign in to comment.