Im a beginner in this field and currently working on a dataset based on Facebook Ads.
The target variable is Amount spent range between 10 to 200 and the features are Frequency (range between 0.1 to 3.0) and Impressions (1000 to 30000)
After training my model (Linear Regression) my score was 0.84 but the MSE was 490, this value i think is because features have rows that have cases like this: (Frequency: 1.432 and Impressions: 25412)
I applied Standardization after split my data in train and test data
**To solve this i thought applying Standardization to remove the high variance of the values i applied fit_transform (X_train) and transform (X_test)
But the score was the same and the MSE too.
My doubts are quite idiot but i working on this field like really new on ML
1) I notice the community dont apply Standardization on target variable (Y) why they do it?
2) Am i doing anything wrong here?
Thank you guys!