Appearance
PRQ
The PRQ value is sent as part of the final results.
The application can receive the PRQ result by implementing the OnFinalResults callback interface:
TypeScript
import {
VitalSigns,
VitalSignsResults,
MeanRRISign,
ConfidenceLevel,
} from '@biosensesignal/web-sdk';
const onFinalResults = useCallback((vitalSignsResults: VitalSignsResults) => {
const results = vitalSignsResults.results as VitalSigns;
const prq = results.prq as PRQSign;
if (prq?.value != null) {
const confidenceLevel = prq.confidenceLevel as ConfidenceLevel;
console.log(`PRQ: ${prq.value}}`);
console.log(`Confidence Level: ${confidenceLevel}`);
}
}, []);For general information about vital signs see the Vital Signs and Health Indicators Information Document.
For additional information regarding the supported indicators see the Indicators Technical Information page.