You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now nurse charting gets 90% of respiratory rates
selectcount(pt.patientunitstayid) as num_total
, count(vnc_d1.resprate_max) as rr
, count(vnc_d1.resprate_max)::numeric/count(pt.patientunitstayid) *100.0as percentage_complete
from gossis_cohort pt left join gossis_vital_nc_d1 vnc_d1 onpt.patientunitstayid=vnc_d1.patientunitstayidwhere excluded=0;
If we add in respiratory rate from respiratoryCharting then we could prob bump this up from 90%. Then have to decide whether it is worth it to add in vitalPeriodic to "clean up" the rest.
The text was updated successfully, but these errors were encountered:
Right now nurse charting gets 90% of respiratory rates
If we add in respiratory rate from respiratoryCharting then we could prob bump this up from 90%. Then have to decide whether it is worth it to add in vitalPeriodic to "clean up" the rest.
The text was updated successfully, but these errors were encountered: