File tree Expand file tree Collapse file tree 1 file changed +16
-12
lines changed Expand file tree Collapse file tree 1 file changed +16
-12
lines changed Original file line number Diff line number Diff line change @@ -41,20 +41,24 @@ Summarize parameters | Summarize chains
41
41
### Chains type
42
42
``` julia
43
43
# construction of a Chains object with no names
44
- Chains (val:: AbstractArray{A,3} ;
45
- start:: Int = 1 ,
46
- thin:: Int = 1 ,
47
- evidence = 0.0 ,
48
- info= NamedTuple ())
44
+ Chains (
45
+ val:: AbstractArray{A,3} ;
46
+ start:: Int = 1 ,
47
+ thin:: Int = 1 ,
48
+ evidence = 0.0 ,
49
+ info= NamedTuple (),
50
+ )
49
51
50
52
# construction of a chains object with new names
51
- Chains (val:: AbstractArray{A,3} ,
52
- parameter_names:: Vector{String} ,
53
- name_map = copy (DEFAULT_MAP);
54
- start:: Int = 1 ,
55
- thin:: Int = 1 ,
56
- evidence = 0.0 ,
57
- info= NamedTuple ())
53
+ Chains (
54
+ val:: AbstractArray{A,3} ,
55
+ parameter_names:: Vector{String} ,
56
+ name_map = copy (DEFAULT_MAP);
57
+ start:: Int = 1 ,
58
+ thin:: Int = 1 ,
59
+ evidence = 0.0 ,
60
+ info= NamedTuple (),
61
+ )
58
62
59
63
# Indexing a Chains object
60
64
chn = Chains (... )
You can’t perform that action at this time.
0 commit comments