File tree 3 files changed +12
-4
lines changed
3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
Package: IgGeneUsage
2
2
Type: Package
3
3
Title: Differential gene usage in immune repertoires
4
- Version: 1.17.15
4
+ Version: 1.17.16
5
5
Authors@R:
6
6
person(given = "Simo",
7
7
family = "Kitanovski",
Original file line number Diff line number Diff line change @@ -85,8 +85,12 @@ M <- DGU(ud = d_zibb_2,
85
85
adapt_delta = 0.8 ,
86
86
max_treedepth = 10 )
87
87
88
+ # look at M elements
89
+ names(M )
90
+
88
91
# look at DGU results
89
- head(M $ fit )
92
+ head(M $ dgu )
93
+
90
94
91
95
# look at posterior predictive checks (PPC)
92
96
head(M $ ppc )
Original file line number Diff line number Diff line change @@ -101,8 +101,12 @@ L <- LOO(ud = Ig,
101
101
hdi_lvl = 0.95 ,
102
102
adapt_delta = 0.99 ,
103
103
max_treedepth = 10 )
104
-
105
- head(L $ loo )
104
+
105
+ # how many LOOs?
106
+ names(L )
107
+
108
+ # elements in first LOO, see vignette about how to extract results
109
+ names(L [[1 ]])
106
110
}
107
111
108
112
You can’t perform that action at this time.
0 commit comments