Skip to content

Commit 74e945e

Browse files
authored
Merge pull request #839 from cmu-delphi/sgratzl/docupdate
fix: unit for new signal
2 parents 1f6deee + 732568c commit 74e945e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/stores/dataSourceLookup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const sourceNameLookup = {
1212
'indicator-combination': 'COVID Indicator Combination',
1313
quidel: 'Quidel Antigen Tests',
1414
safegraph: 'SafeGraph Mobility Data',
15-
google_symptoms: 'Google Symptoms Searches',
15+
'google-symptoms': 'Google Symptoms Searches',
1616
};
1717

1818
/**

src/stores/descriptions.raw.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,15 +161,15 @@ Links:
161161
- "[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators)"
162162
---
163163
Name: COVID Symptom Searches on Google
164-
Id: google_symptoms
164+
Id: google-symptoms
165165
Signal: sum_anosmia_ageusia_smoothed_search
166166
RawSignal: sum_anosmia_ageusia_raw_search
167167
Type: public
168168
Levels: [state, msa, hrr, county]
169169
XAxis: Date
170170
YAxis: Scaled search volume (arbitrary scale)
171171
Format: raw
172-
Unit: Scaled search volume
172+
Unit: scaled search volume
173173
IsInverted: false
174174
Is7DayAverage: true
175175
HasStdErr: false
@@ -298,7 +298,7 @@ Credits: We are happy for you to use this data in products and publications unde
298298
Links:
299299
- "[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests)"
300300
---
301-
Name: COVID Hospital Admissions
301+
Name: Claims-Based COVID Hospital Admissions
302302
Id: hospital-admissions
303303
Signal: smoothed_adj_covid19_from_claims
304304
RawSignal: null
@@ -317,7 +317,7 @@ Highlight: [landing]
317317
MapTitleText: Percentage of daily hospital admissions with COVID-19 associated diagnoses
318318

319319

320-
Description: Delphi receives from our health system partners aggregated statistics on COVID-related hospital admissions, derived from ICD codes found in insurance claims. Using this data, we estimate the percentage of new hospital admissions each day that are related to COVID-19. Note that these estimates are based only on admissions by patients whose data is accessible to our partners, and address new hospital admissions each day, not all currently hospitalized patients who have COVID-related diagnoses.
320+
Description: Delphi receives from our health system partners aggregated statistics on COVID-related hospital admissions, derived from ICD codes found in insurance claims. Using this data, we estimate the percentage of new hospital admissions each day that are related to COVID-19. Note that these estimates are based only on admissions by patients whose data is accessible to our partners, and address new hospital admissions each day, not all currently hospitalized patients who have COVID-related diagnoses.
321321

322322

323323
Credits: We are happy for you to use this data in products and publications under the terms of the Creative Commons Attribution license.

src/stores/params.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ export class SensorParam {
642642
? `<span class="per100k"><span>PER</span><span>100K</span></span>`
643643
: this.isPercentage
644644
? `<span class="per100">/100</span>`
645-
: this.unitShort;
645+
: '';
646646
this.xAxis = sensor.xAxis;
647647
this.yAxis = sensor.yAxis;
648648
}

0 commit comments

Comments
 (0)