Skip to content

Commit

Permalink
Update description of logistic regression model
Browse files Browse the repository at this point in the history
  • Loading branch information
marius-mather committed Sep 30, 2024
1 parent a6dd431 commit f1641f6
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions app/_plots/RiskPlot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,16 @@ export default function RiskPlot(props: RiskPlotProps) {
return () => plot.remove();
}, [risk, model, scores]);
const Tooltip = () => (
<span>
The predicted risk of dementia value is obtained from a logistic
regression model fitted to our sample.
<br />
The horizontal line represents the 95% prediction interval for risk.
</span>
<>
<p className="mb-2">
The predicted risk of dementia value is obtained from a logistic
regression model based on the ACE-III subdomain scores, fitted to our
sample.
</p>
<p>
The horizontal line represents the 95% prediction interval for risk.
</p>
</>
);
const Title = (props: { risk: number | undefined }) => {
const risk = props.risk;
Expand Down

0 comments on commit f1641f6

Please sign in to comment.