Skip to content

Commit bbd73dd

Browse files
committed
doc: more styling
1 parent 2455449 commit bbd73dd

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

reports/template.md

+30-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,36 @@
11
<style>
2+
/* Some basic styling (a reasonable reading width and dark mode support) */
23
body {
34
max-width: 800px;
45
margin: 2rem auto;
56
padding: 0 1rem;
67
font-family: sans-serif;
8+
background: white;
9+
color: black;
10+
}
11+
12+
a:link {
13+
color: blue;
14+
}
15+
16+
a:visited {
17+
color: purple;
18+
}
19+
20+
/* Dark mode support */
21+
@media (prefers-color-scheme: dark) {
22+
body {
23+
background: #121212;
24+
color: #e0e0e0;
25+
}
26+
27+
a:link {
28+
color: #80cbc4;
29+
}
30+
31+
a:visited {
32+
color: #b39ddb; /* light purple for contrast on dark bg */
33+
}
734
}
835
</style>
936

@@ -106,9 +133,9 @@ However, we also had mixed results from tests of this feature in very simple syn
106133
- We also tried using the climatological median of the target variable as a feature (see below for definition of "climatological").
107134
- Note that unusually, the last two features are actually led rather than lagged, since we should be predicting using the target's coefficient, rather than the present one.
108135

109-
### Autoregressive models with seasonal and exogenous features
136+
### Autoregressive models with exogenous features
110137

111-
Internal name: `scaled_pop_seasonal` (with `filter_source = "nhsn"`).
138+
Internal name: `scaled_pop_seasonal`.
112139

113140
These models could opt into the same seasonal features as the `scaled_pop_seasonal` forecaster, but also included exogenous features.
114141

@@ -126,7 +153,7 @@ The symptom set used was s01, s03, and s04 from [here](https://cmu-delphi.github
126153
- NSSP - same as flu.
127154
- Google-Symptoms - same as flu, though we used a slightly different symtom set (just s04 and s05 from [here](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html)).
128155

129-
### Augmented Data Forecaster
156+
### Autoregressive models with augmented data
130157

131158
Internal name: `scaled_pop` (with `filter_source = ""`).
132159

0 commit comments

Comments
 (0)