Correctness of Data Science Project
Is this correct?
-
Oh, no~~~ It is NOT correct, what shall I do?
-
YES~~~ It is CORRECT!!! Here is the output~~~
-
See~~~ P value is very small !!!
-
Here we go, this is my prediction !!!
by "following" the "tutorial" online
#Building the Decision Tree Model on our dataset
from
sklearn.tree
import
DecisionTreeRegressor
DT_model
=
DecisionTreeRegressor(max_depth
=
5
).fit(X_train,Y_train)
DT_predict
=
DT_model.predict(X_test)
#Predictions on Testing data
print
(DT_predict)
-
You have to understand your data and your analysis !!!
Can you tell me more about the answer?