public class Meeting
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
double |
intercept
intercept of the regression that takes place during the meeting
|
double |
means_square_error
mean squarred error of the regression that takes place during the meeting
|
double |
meetingDuration
meeting duration
|
double |
meetingStartTime
Metting start time
|
double |
ResidualSumOfSquares
sum of the squared residual that takes place during the meeting
|
double |
Rsquared
R squared of the regression that takes place during the meeting
|
double |
slope
slope of the regression that takes place during the meeting
|
double |
standard_error
standard error of the regression that takes place during the meeting
|
Constructor and Description |
---|
Meeting(double regressIntercept,
double regressSlope,
double regressStandard_error,
double regressMeans_square_error,
double aMeetingDuration,
double _Rsquared,
double _meetingStartTime,
double _ResidualSumOfSquares)
Initialise the meeting
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
returns a string with the meeting parameters
|
public double intercept
public double slope
public double standard_error
public double means_square_error
public double meetingDuration
public double Rsquared
public double meetingStartTime
public double ResidualSumOfSquares
public Meeting(double regressIntercept, double regressSlope, double regressStandard_error, double regressMeans_square_error, double aMeetingDuration, double _Rsquared, double _meetingStartTime, double _ResidualSumOfSquares)
regressIntercept
- regression interceptregressSlope
- regression sloperegressStandard_error
- regression standard errorregressMeans_square_error
- mean squared error of the regression that takes place during the meetingaMeetingDuration
- meeting duration_Rsquared
- r squared of the regression that takes place during the meeting_meetingStartTime
- meeting start time_ResidualSumOfSquares
- sum of the squared residuals that takes place during the meeting