Skip to content

Commit ff983c1

Browse files
committed
start documentation
1 parent 53cd253 commit ff983c1

File tree

8 files changed

+40
-3
lines changed

8 files changed

+40
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*Manifest.toml
2-
temp.jl
2+
temp.jl
3+
/build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ using StatsPlots
119119
@df df plot(:trial, :std_δ, xlabel="trial", ylabel="σ of δ", grid=false, group=:design, linewidth=2, ylims=(0,1.5), size=(600,400))
120120
```
121121

122-
<img src="Examples/Monetary_Gambles/results.png" alt="" width="500" height="300">
122+
<img src="examples/Monetary_Gambles/results.png" alt="" width="500" height="300">
123123

124124
# References
125125

docs/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build/
2+
site/

docs/Project.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
4+
StatsPlots = "f3b207a7-027a-5e70-b257-86293d7955fd"
5+
UtilityModels = "bddc258c-9485-48da-848b-3e4c1ee8966c"

docs/make.jl

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
using Documenter
2+
using AdaptiveDesignOptimization
3+
4+
makedocs(
5+
warnonly = true,
6+
sitename = "AdaptiveDesignOptimization",
7+
format = Documenter.HTML(
8+
assets = [
9+
asset(
10+
"https://fonts.googleapis.com/css?family=Montserrat|Source+Code+Pro&display=swap",
11+
class = :css
12+
)
13+
],
14+
collapselevel = 1
15+
),
16+
modules = [
17+
AdaptiveDesignOptimization,
18+
# Base.get_extension(AdaptiveDesignOptimization, :TuringExt),
19+
# Base.get_extension(AdaptiveDesignOptimization, :NamedArraysExt)
20+
],
21+
pages = [
22+
"Home" => "index.md",
23+
]
24+
)
25+
26+
deploydocs(repo = "github.com/itsdfish/AdaptiveDesignOptimization.jl.git")

docs/src/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# AdaptiveDesignOptimization.jl
2+
3+
Documentation for AdaptiveDesignOptimization.jl

examples/monetary_gambles/Run_Monetary_Gamble.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ using Distributions
1313
using Random
1414
using UtilityModels
1515
includet("TAX_Model.jl")
16-
Random.seed!(25974)
16+
Random.seed!(674)
1717
#######################################################################################
1818
# Define Experiment Design
1919
#######################################################################################

examples/monetary_gambles/results.png

769 Bytes
Loading

0 commit comments

Comments
 (0)