Appearance
Heart Age
The Heart Age value is sent as part of the final results.
The User Information is required to calculate the Heart Age result. If any details are missing from the User Information, the Heart Age will not be calculated. For more information on User Information, see the User Information page.
This indicator is supported for face measurements.
The application can receive the Heart Age result by using the useFinalResults hook:
TypeScript
import {
VitalSignTypes,
useFinalResults
} from 'biosensesignal-react-native-sdk';
const finalResults = useFinalResults();
React.useEffect(() => {
if (finalResults) {
const heartAge = finalResults.getResult(VitalSignTypes.HEART_AGE) as VitalSignHeartAge;
if (heartAge) {
console.log(`Heart Age: ${heartAge.value}`);
}
}
}, [finalResults]);For general information about vital signs see the Vital Signs and Health Indicators Information Document.
For a list of supported vital signs by platform and measurement mode (face/polar), along with their required measurement durations, refer to the Indicators Technical Information page.