File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -495,6 +495,7 @@ ParticleShapeStatistics::ParticleShapeStatistics(std::shared_ptr<Project> projec
495495 // TODO: importing regression params doesn't make sense here. take a look again later.
496496}
497497
498+ // ---------------------------------------------------------------------------
498499Eigen::VectorXd ParticleShapeStatistics::compute_regression_mean (
499500 const std::vector<double >& explanatory_variables) const {
500501 std::cout << " Computing mean for regression" << std::endl;
Original file line number Diff line number Diff line change @@ -391,7 +391,6 @@ void AnalysisTool::handle_analysis_options() {
391391 ui_->pcaAnimateCheckBox ->setEnabled (false );
392392 ui_->pcaModeSpinBox ->setEnabled (false );
393393 pca_animate_timer_.stop ();
394-
395394 }
396395
397396 update_difference_particles ();
@@ -503,6 +502,7 @@ void AnalysisTool::network_analysis_clicked() {
503502 app_->get_py_worker ()->run_job (network_analysis_job_);
504503}
505504
505+ // ---------------------------------------------------------------------------
506506Eigen::VectorXd load_regression_parameters (std::string filepath) {
507507 std::ifstream infile (slope_file_path);
508508 if (!infile.good ()) {
@@ -711,6 +711,7 @@ bool AnalysisTool::compute_stats() {
711711 return true ;
712712}
713713
714+ // ---------------------------------------------------------------------------
714715bool check_explanatory_variable_limits () {
715716 auto subjects = session_->get_project ()->get_subjects ();
716717 explanatory_variable_limits_.resize (2 , 0.0 );
You can’t perform that action at this time.
0 commit comments