kishoreganth / LinearRegressionDemo-R

Simple Linear Regression built using R language .

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LinearRegressionDemo-R

Simple Linear Regression built using R language .

Overview

. Linear Regression from here

Prerequisites

R language is different from python language. Packages are different

install the libraries

install.packages('caTools')

import the libraries in the rstudio

library(caTools)

Clone the repo and work with your own dataset . Scale the data and clean. Then train the data and fit those data in the regression algorithm and predict the values .

Visualise the data . We need to install the library for that task in the rstudio .

install.packages('ggplot2')

import the library in the file

library(ggplot2)

Clone the repo and work with algorithm , Comments given for each step .

Enjoy Regression ❕ Enjoy Developing 👍

About

Simple Linear Regression built using R language .


Languages

Language:R 100.0%