meanAbsoluteError = $meanAbsoluteError; } public function getMeanAbsoluteError() { return $this->meanAbsoluteError; } public function setMeanSquaredError($meanSquaredError) { $this->meanSquaredError = $meanSquaredError; } public function getMeanSquaredError() { return $this->meanSquaredError; } public function setMeanSquaredLogError($meanSquaredLogError) { $this->meanSquaredLogError = $meanSquaredLogError; } public function getMeanSquaredLogError() { return $this->meanSquaredLogError; } public function setMedianAbsoluteError($medianAbsoluteError) { $this->medianAbsoluteError = $medianAbsoluteError; } public function getMedianAbsoluteError() { return $this->medianAbsoluteError; } public function setRSquared($rSquared) { $this->rSquared = $rSquared; } public function getRSquared() { return $this->rSquared; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RegressionMetrics::class, 'Google_Service_Bigquery_RegressionMetrics');