Skip to content

Commit

Permalink
2024-10-15 update : fixing hosp only model return & docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbernalz committed Oct 15, 2024
1 parent 413235a commit 4e4f356
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ To install UCIWWEIHR.jl, you can use the Julia package manager. Open the Julia R

```julia
using Pkg
Pkg.add("git@github.com:cbernalz/UCIWWEIHR.jl.git")
Pkg.add("https://github.com/cbernalz/UCIWWEIHR.jl.git")
```
2 changes: 1 addition & 1 deletion docs/src/tutorials/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To install the UCIWWEIHR.jl package, open the Julia REPL and run the following c

``` julia
using Pkg
Pkg.add("git@github.com:cbernalz/UCIWWEIHR.jl.git")
Pkg.add("https://github.com/cbernalz/UCIWWEIHR.jl.git")
```


Expand Down
3 changes: 1 addition & 2 deletions src/uciwweihr_model.jl
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@ The defaults for this fuction will follow those of the default simulation in gen
return
end
sol_array = Array(sol)
I_comp_sol = clamp.(sol_array[2,2:end],1, 1e10)


# Likelihood calculations------------
Expand All @@ -278,7 +277,7 @@ The defaults for this fuction will follow those of the default simulation in gen
epsilon = epsilon,
rt_vals = rt_vals,
sigma_hosp = sigma_hosp,
H = H_comp,
H = sol_hosp,
rt_init = rt_init,
w_init = w_init
)
Expand Down

0 comments on commit 4e4f356

Please sign in to comment.