mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Modified overview to be able to use percentiles other than 90%
This commit is contained in:
parent
8a79769f3a
commit
25f1e10d7c
@ -124,6 +124,7 @@ void SummaryChart::SetDay(Day * nullday)
|
|||||||
//if (code==CPAP_Leak) suboffset=PROFILE.cpap->IntentionalLeak(); else
|
//if (code==CPAP_Leak) suboffset=PROFILE.cpap->IntentionalLeak(); else
|
||||||
suboffset=0;
|
suboffset=0;
|
||||||
type=m_type[j];
|
type=m_type[j];
|
||||||
|
EventDataType typeval=m_typeval[j];
|
||||||
for (int i=0;i<d.value().size();i++) { // for each machine object for this day
|
for (int i=0;i<d.value().size();i++) { // for each machine object for this day
|
||||||
day=d.value()[i];
|
day=d.value()[i];
|
||||||
if (day->machine_type()!=m_machinetype) continue;
|
if (day->machine_type()!=m_machinetype) continue;
|
||||||
@ -142,6 +143,7 @@ void SummaryChart::SetDay(Day * nullday)
|
|||||||
case ST_SUM: tmp=day->sum(code); break;
|
case ST_SUM: tmp=day->sum(code); break;
|
||||||
case ST_WAVG: tmp=day->wavg(code); break;
|
case ST_WAVG: tmp=day->wavg(code); break;
|
||||||
case ST_90P: tmp=day->p90(code); break;
|
case ST_90P: tmp=day->p90(code); break;
|
||||||
|
case ST_PERC: tmp=day->percentile(code,typeval); break;
|
||||||
case ST_MIN: tmp=day->Min(code); break;
|
case ST_MIN: tmp=day->Min(code); break;
|
||||||
case ST_MAX: tmp=day->Max(code); break;
|
case ST_MAX: tmp=day->Max(code); break;
|
||||||
case ST_CNT: tmp=day->count(code); break;
|
case ST_CNT: tmp=day->count(code); break;
|
||||||
@ -496,10 +498,12 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height)
|
|||||||
for (int j=0;j<m_codes.size();j++) {
|
for (int j=0;j<m_codes.size();j++) {
|
||||||
if (!m_goodcodes[j]) continue;
|
if (!m_goodcodes[j]) continue;
|
||||||
ChannelID code=m_codes[j];
|
ChannelID code=m_codes[j];
|
||||||
|
EventDataType tval=m_typeval[j];
|
||||||
switch(m_type[j]) {
|
switch(m_type[j]) {
|
||||||
case ST_WAVG: b="Avg"; break;
|
case ST_WAVG: b="Avg"; break;
|
||||||
case ST_AVG: b="Avg"; break;
|
case ST_AVG: b="Avg"; break;
|
||||||
case ST_90P: b="90%"; break;
|
case ST_90P: b="90%"; break;
|
||||||
|
case ST_PERC: b=QString("%1%").arg(tval*100.0,0,'f',0); break;
|
||||||
case ST_MIN: b="Min"; break;
|
case ST_MIN: b="Min"; break;
|
||||||
case ST_MAX: b="Max"; break;
|
case ST_MAX: b="Max"; break;
|
||||||
case ST_CPH: b=""; break;
|
case ST_CPH: b=""; break;
|
||||||
@ -684,10 +688,12 @@ bool SummaryChart::mouseMoveEvent(QMouseEvent *event)
|
|||||||
QString a;
|
QString a;
|
||||||
for (int i=0;i<m_type.size();i++) {
|
for (int i=0;i<m_type.size();i++) {
|
||||||
if (!m_goodcodes[i]) continue;
|
if (!m_goodcodes[i]) continue;
|
||||||
|
EventDataType tval=m_typeval[i];
|
||||||
switch(m_type[i]) {
|
switch(m_type[i]) {
|
||||||
case ST_WAVG: a="W-avg"; break;
|
case ST_WAVG: a="W-avg"; break;
|
||||||
case ST_AVG: a="Avg"; break;
|
case ST_AVG: a="Avg"; break;
|
||||||
case ST_90P: a="90%"; break;
|
case ST_90P: a="90%"; break;
|
||||||
|
case ST_PERC: a=QString("%1%").arg(tval*100.0,0,'f',0); break;
|
||||||
case ST_MIN: a="Min"; break;
|
case ST_MIN: a="Min"; break;
|
||||||
case ST_MAX: a="Max"; break;
|
case ST_MAX: a="Max"; break;
|
||||||
case ST_CPH: a=""; break;
|
case ST_CPH: a=""; break;
|
||||||
|
@ -38,7 +38,14 @@ class SummaryChart:public Layer
|
|||||||
virtual bool isEmpty() { return m_empty; }
|
virtual bool isEmpty() { return m_empty; }
|
||||||
|
|
||||||
//! \brief Adds a layer to the summaryChart (When in Bar mode, it becomes culminative, eg, the AHI chart)
|
//! \brief Adds a layer to the summaryChart (When in Bar mode, it becomes culminative, eg, the AHI chart)
|
||||||
void addSlice(ChannelID code, QColor color, SummaryType type, bool ignore_zeros) { m_codes.push_back(code); m_colors.push_back(color); m_type.push_back(type); m_zeros.push_back(ignore_zeros); }
|
void addSlice(ChannelID code, QColor color, SummaryType type, bool ignore_zeros=false, EventDataType tval=0.00f)
|
||||||
|
{
|
||||||
|
m_codes.push_back(code);
|
||||||
|
m_colors.push_back(color);
|
||||||
|
m_type.push_back(type);
|
||||||
|
m_zeros.push_back(ignore_zeros);
|
||||||
|
m_typeval.push_back(tval);
|
||||||
|
}
|
||||||
|
|
||||||
//! \brief Deselect highlighting (the gold bar)
|
//! \brief Deselect highlighting (the gold bar)
|
||||||
virtual void deselect() {
|
virtual void deselect() {
|
||||||
@ -58,6 +65,7 @@ class SummaryChart:public Layer
|
|||||||
QVector<bool> m_goodcodes;
|
QVector<bool> m_goodcodes;
|
||||||
QVector<bool> m_zeros;
|
QVector<bool> m_zeros;
|
||||||
QVector<SummaryType> m_type;
|
QVector<SummaryType> m_type;
|
||||||
|
QVector<EventDataType> m_typeval;
|
||||||
QHash<int,QHash<short,EventDataType> > m_values;
|
QHash<int,QHash<short,EventDataType> > m_values;
|
||||||
QHash<int,QHash<short,EventDataType> > m_times;
|
QHash<int,QHash<short,EventDataType> > m_times;
|
||||||
QHash<int,EventDataType> m_hours;
|
QHash<int,EventDataType> m_hours;
|
||||||
|
@ -320,6 +320,9 @@ bool Day::hasData(ChannelID code, SummaryType type)
|
|||||||
case ST_90P:
|
case ST_90P:
|
||||||
has=sess->m_90p.contains(code);
|
has=sess->m_90p.contains(code);
|
||||||
break;
|
break;
|
||||||
|
case ST_PERC:
|
||||||
|
has=sess->m_valuesummary.contains(code);
|
||||||
|
break;
|
||||||
case ST_MIN:
|
case ST_MIN:
|
||||||
has=sess->m_min.contains(code);
|
has=sess->m_min.contains(code);
|
||||||
break;
|
break;
|
||||||
|
@ -39,7 +39,7 @@ qint64 timezoneOffset();
|
|||||||
/*! \enum SummaryType
|
/*! \enum SummaryType
|
||||||
\brief Calculation method to select from dealing with summary information
|
\brief Calculation method to select from dealing with summary information
|
||||||
*/
|
*/
|
||||||
enum SummaryType { ST_CNT, ST_SUM, ST_AVG, ST_WAVG, ST_90P, ST_MIN, ST_MAX, ST_CPH, ST_SPH, ST_FIRST, ST_LAST, ST_HOURS, ST_SESSIONS, ST_SETMIN, ST_SETAVG, ST_SETMAX, ST_SETWAVG, ST_SETSUM };
|
enum SummaryType { ST_CNT, ST_SUM, ST_AVG, ST_WAVG, ST_PERC, ST_90P, ST_MIN, ST_MAX, ST_CPH, ST_SPH, ST_FIRST, ST_LAST, ST_HOURS, ST_SESSIONS, ST_SETMIN, ST_SETAVG, ST_SETMAX, ST_SETWAVG, ST_SETSUM };
|
||||||
|
|
||||||
/*! \enum MachineType
|
/*! \enum MachineType
|
||||||
\brief Generalized type of a machine
|
\brief Generalized type of a machine
|
||||||
|
@ -216,7 +216,8 @@ Overview::Overview(QWidget *parent,gGraphView * shared) :
|
|||||||
pr->addSlice(CPAP_Pressure,QColor("dark green"),ST_WAVG,true);
|
pr->addSlice(CPAP_Pressure,QColor("dark green"),ST_WAVG,true);
|
||||||
pr->addSlice(CPAP_Pressure,QColor("orange"),ST_MIN,true);
|
pr->addSlice(CPAP_Pressure,QColor("orange"),ST_MIN,true);
|
||||||
pr->addSlice(CPAP_Pressure,QColor("red"),ST_MAX,true);
|
pr->addSlice(CPAP_Pressure,QColor("red"),ST_MAX,true);
|
||||||
pr->addSlice(CPAP_Pressure,QColor("grey"),ST_90P,true);
|
//pr->addSlice(CPAP_Pressure,QColor("grey"),ST_90P,true);
|
||||||
|
pr->addSlice(CPAP_Pressure,QColor("grey"),ST_PERC,true,0.95);
|
||||||
pr->addSlice(CPAP_EPAP,QColor("green"),ST_MIN,true);
|
pr->addSlice(CPAP_EPAP,QColor("green"),ST_MIN,true);
|
||||||
pr->addSlice(CPAP_EPAP,QColor("light green"),ST_90P,true);
|
pr->addSlice(CPAP_EPAP,QColor("light green"),ST_90P,true);
|
||||||
|
|
||||||
@ -225,7 +226,7 @@ Overview::Overview(QWidget *parent,gGraphView * shared) :
|
|||||||
PR->AddLayer(pr);
|
PR->AddLayer(pr);
|
||||||
|
|
||||||
lk=new SummaryChart(tr("Avg Leak"),GT_LINE);
|
lk=new SummaryChart(tr("Avg Leak"),GT_LINE);
|
||||||
lk->addSlice(CPAP_Leak,QColor("dark grey"),ST_90P,false);
|
lk->addSlice(CPAP_Leak,QColor("dark grey"),ST_PERC,false,0.8);
|
||||||
lk->addSlice(CPAP_Leak,QColor("dark blue"),ST_WAVG,false);
|
lk->addSlice(CPAP_Leak,QColor("dark blue"),ST_WAVG,false);
|
||||||
//lk->addSlice(CPAP_Leak,QColor("dark yellow"));
|
//lk->addSlice(CPAP_Leak,QColor("dark yellow"));
|
||||||
//pr->addSlice(CPAP_IPAP,QColor("red"));
|
//pr->addSlice(CPAP_IPAP,QColor("red"));
|
||||||
|
Loading…
Reference in New Issue
Block a user