The dataset which was extracted from the database consists of more than 50 columns, I call these columns dimensions, can I call them dimensions?
Obviously, I have to do dimension reduction on them. But since PCA like algorithms often do axis rotating to generate some new axises. I don't think I will PCA algorithm in dimensions reduction. So I calculated the correlations between these columns(parameters), and filtered these who has a high value and some other rules. So can I still call it dimensions reduction? Since I only did some parameters filtering
The reason I don't use PCA like algorithms is because I want to implement Neural Network classification, and I need the real parameters.
Please comment on these, anything even criticizing is welcomed.
x1
andx2
, there will be linear combination, let's sayz1 = x1 * a1 + x2 * b1
andz2 = x1 * a2 + x2 * b2
to generate 2 newz
features. Then you will pick the top few features, let's say onlyz1
to reduce dimensionality. This means that you will be able to translatez1, z2
back intox1 and x2
if required. Some further reading on PCA might be useful: http://www4.ncsu.edu/~slrace/LinearAlgebra2016/Slides/EigenspacesPrint.pdf – niczky12 Mar 22 '17 at 08:45