R Programming - Linear Regression

preview_player
Показать описание
R Programming - Linear Regression
Lecture By: Mr. Ashish Sharma, Tutorials Point India Private Limited.
Рекомендации по теме
Комментарии
Автор

Use coupon "YOUTUBE12" to get ‘’FLAT 12%’’ OFF at Checkout.

TutorialsPoint_
Автор

if you are making a videos please make it in details .many things are left unexplained and unclear.

avnishsingh
Автор

library(plotrix)
Pie3D(datasetname, lables=attribute, main="variable name")

Jeevitha_
Автор

it will be great if you could explain residuals & coefficients.. little bit on how R calculates it.

pianissimo
Автор

In my r studio, it is showing the invalid formula for relation <- lm(y-x), how to correct it?

sonalisharma
Автор

#clustering plotting
ggplot(datasetname, aes(x=attributename1, y=attributename2, col=target))+geom_point()
#histogram
hist(datasetname$attribute, col="blue")
#densityplotting

plot(d)
#pie chart

variablechart
table(variablechart)
variablevalues<-c(96, 207)
variablelabls<-c(0, 1)
variablewisechart<-pie(variablevalues, variablelabls, main="attribute", col = c("red", "blue"), radius = 1)
#bar plot

bar(main="datasetname", xlab="attributename", col="blue", border="red")
#scatter plot
scatter.smooth(x=datasetname$attribute, y=datasetname$attribute, main="create variable")
#box plot
boxplot(variable_datasetname)
m=data.frame(x=1:2, y=sapply(variable_datasetname, median))
abline(lm(y~x, data=m))

Jeevitha_
Автор

Do it for clustering, classification models etc

TopStudentin
Автор

Sandwich
Ggplot
Reader
Arule
Matrix
Rattle
e1071
Caret
Lattice
Rcolorbrewer
Arulesviz

Jeevitha_
Автор

Your model is not working even with same number of member in variables.

bluewater
Автор

Hi thank u.
Could u please tell me, how can I do regression through orgin in R

munshir.c
Автор

the x and y are of different length so lm() function is not working. what to do?

akashmahapatra