mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
27 lines
483 B
C
27 lines
483 B
C
|
// A regression line and confidence area
|
||
|
#ifndef REGRESSION_H
|
||
|
#define REGRESSION_H
|
||
|
|
||
|
#include "chartitem.h"
|
||
|
|
||
|
class StatsAxis;
|
||
|
class StatsView;
|
||
|
|
||
|
struct regression_data {
|
||
|
double a,b;
|
||
|
double res2, r2, sx2, xavg;
|
||
|
int n;
|
||
|
};
|
||
|
|
||
|
class RegressionItem : public ChartPixmapItem {
|
||
|
public:
|
||
|
RegressionItem(StatsView &view, regression_data data, StatsAxis *xAxis, StatsAxis *yAxis);
|
||
|
~RegressionItem();
|
||
|
void updatePosition();
|
||
|
private:
|
||
|
StatsAxis *xAxis, *yAxis;
|
||
|
regression_data reg;
|
||
|
};
|
||
|
|
||
|
#endif
|