Skip to content

Commit

Permalink
no shaded area variant
Browse files Browse the repository at this point in the history
  • Loading branch information
mlisnic committed Sep 9, 2024
1 parent 0892e44 commit 8f22135
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions public/stage-3/config-stage-3.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"id": "agree",
"type": "likert",
"location": "belowStimulus",
"prompt": "The visualization supports the idea that stock C yielded the highest returns in the entire industry in 2023:",
"prompt": "The visualization supports the idea that stock C yielded the highest returns in the industry in 2023:",
"preset": 5,
"leftLabel": "Strongly disagree",
"rightLabel": "Strongly agree",
Expand Down Expand Up @@ -112,7 +112,7 @@
"id": "agree",
"type": "likert",
"location": "belowStimulus",
"prompt": "The visualization supports the idea that stock E yielded the highest returns in the entire industry in 2023:",
"prompt": "The visualization supports the idea that stock E yielded the highest returns in the industry in 2023:",
"preset": 5,
"leftLabel": "Strongly disagree",
"rightLabel": "Strongly agree",
Expand Down Expand Up @@ -177,7 +177,7 @@
"id": "agree",
"type": "likert",
"location": "belowStimulus",
"prompt": "The visualization supports the idea that stock A yielded the highest returns in the entire industry in 2023:",
"prompt": "The visualization supports the idea that stock A yielded the highest returns in the industry in 2023:",
"preset": 5,
"leftLabel": "Strongly disagree",
"rightLabel": "Strongly agree",
Expand Down Expand Up @@ -492,9 +492,9 @@
"order": "latinSquare",
"numSamples": 1,
"components": [
"stock-simple-c-ss",
"stock-simple-a-ss",
"stock-simple-e-ss",
"stock-simple-c-ss"
"stock-simple-e-ss"
]
}
]
Expand Down
2 changes: 1 addition & 1 deletion src/public/viz-guardrails/DataExplorer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export function DataExplorer({ parameters, setAnswer }: StimulusParams<ChartPara
<Text fw={500}>
{dataname === 'clean_stocks' ? 'Percent change in stock price' : 'Infections per million people'}
</Text>
{guardrail === 'super_summ' ? (
{guardrail === 'super_summDELETE' ? (
<Text fz="xs" c="dimmed">Shaded area contains the industry average and shows the middle 50% of all values in the industry.</Text>
) : null}
{guardrail === 'juxt_summ' ? (
Expand Down
4 changes: 2 additions & 2 deletions src/public/viz-guardrails/LineChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -301,14 +301,14 @@ export function LineChart({
<svg key="control_bands" style={{ width: `${width}` }}>
{superimposeSummary ? (
<g key="summary_g">
<path
{/* <path
id="confidenceBands"
key="confidenceBands_key"
fill="lightgray"
opacity={0.25}
stroke="none"
d={superimposeSummary.confidenceBands}
/>
/> */}
<path
id="meanLine"
key="meanLine_key"
Expand Down

0 comments on commit 8f22135

Please sign in to comment.