-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexampletable.typ
60 lines (59 loc) · 2.25 KB
/
exampletable.typ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#import"@preview/tablex:0.0.8": tablex, gridx, hlinex, vlinex, colspanx, rowspanx, cellx
#let col1width = 12em
#let coliwidth = auto
#figure(
kind: table,
gridx(
columns: (col1width, coliwidth, coliwidth, coliwidth, ),
rows: (0.2em, 1.5em),
align: center + horizon,
hlinex(y: 0, stroke: 0.05em),
cellx(x: 0, y: 0, colspan: 4)[],
hlinex(y: 1, stroke: 0.05em),
cellx(x: 1, y: 1)[(1)],
cellx(x: 2, y: 1)[(2)],
cellx(x: 3, y: 1)[(3)],
hlinex(start: 1, y: 2, stroke: 0.05em),
cellx(x: 0, y: 6, align: left)[Z],
cellx(x: 2, y: 6)[2.5#super[$+$]],
cellx(x: 2, y: 7)[(0.289)],
cellx(x: 3, y: 6)[-0.222],
cellx(x: 3, y: 7)[(0.208)],
cellx(x: 0, y: 4, align: left)[X],
cellx(x: 1, y: 4)[2.5#super[$+$]],
cellx(x: 1, y: 5)[(0.289)],
cellx(x: 3, y: 4)[2.722],
cellx(x: 3, y: 5)[(0.487)],
cellx(x: 0, y: 2, align: left)[(Intercept)],
cellx(x: 1, y: 2)[-0.667],
cellx(x: 1, y: 3)[(0.624)],
cellx(x: 2, y: 2)[-8.167],
cellx(x: 2, y: 3)[(1.462)],
cellx(x: 3, y: 2)[0.0],
cellx(x: 3, y: 3)[(NaN)],
hlinex(start: 1, y: 8, stroke: 0.05em),
cellx(x: 0, y: 8, align: left)[N],
cellx(x: 0, y: 12, align: left)[BIC],
cellx(x: 0, y: 9, align: left)[$R^2$],
cellx(x: 0, y: 11, align: left)[AIC],
cellx(x: 0, y: 10, align: left)[Adjusted $R^2$],
cellx(x: 1, y: 8)[3],
cellx(x: 1, y: 12)[3.138],
cellx(x: 1, y: 9)[0.987],
cellx(x: 1, y: 11)[5.843],
cellx(x: 1, y: 10)[0.974],
cellx(x: 2, y: 8)[3],
cellx(x: 2, y: 12)[3.138],
cellx(x: 2, y: 9)[0.987],
cellx(x: 2, y: 11)[5.843],
cellx(x: 2, y: 10)[0.974],
cellx(x: 3, y: 8)[3],
cellx(x: 3, y: 12)[3.138],
cellx(x: 3, y: 9)[0.987],
cellx(x: 3, y: 11)[5.843],
cellx(x: 3, y: 10)[0.974],
hlinex(y: 13, stroke: 0.1em),
cellx(y: 13, colspan: 4, align: left)[_Note:_ $#super[+]p<0.10$; $#super[$star.op$]p<0.05$; $#super[$star.op star.op$]p<0.01$, $#super[$star.op star.op star.op$]p<0.001$]
),
caption: [Models of Y.]
)