3D Regression after doing PCA
显示 更早的评论
Here is my current code - I am using PCA on RGB values which correspond to a pH...one component explains 86% of the data so I am thinking of using 2 components for the regression. I am unsure how to do this, so my current code has 3 methods from chatGPT, only one of which is working. If anyone has any ideas, that would be greatly appreciated. I have included the code and the data. I want to be able to input RGB values and have it output an estimated pH.
The goal is:
a projection of measurements onto principal components as the independent variable, and the target value as the dependent variable
Test the curves on out-of-distribution data (data not used to fit the curves) to get a measurement of the amount of error in the curve. If necessary, repeat step 3 by varying the type of curve fit or the number of principal components used until a satisfactory result is obtained
回答(1 个)
Taylor
2024-4-18
0 个投票
You want to use the second ouput of pca (score in your code). Each column represents each principal component, where each value of explained contains the percent variances explained by each component.
类别
在 帮助中心 和 File Exchange 中查找有关 Dimensionality Reduction and Feature Extraction 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!