Q:

Linear Regression Machine Learning Algorithms using R programming language

0

Write a program that performs an algorithm Linear Regression

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

x_train <- input_variables_values_training_datasets
y_train <- target_variables_values_training_datasets
x_test <- input_variables_values_test_datasets
x <- cbind(x_train,y_train)
linear <- lm(y_train ~ ., data = x)
summary(linear)
predicted= predict(linear,x_test)

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now