Jump to content

R Experts Evarina Vunnara Need Urgent Help


ennnna chata

Recommended Posts

  • Replies 35
  • Created
  • Last Reply

Top Posters In This Topic

  • ennnna chata

    15

  • ramdatascience

    8

  • ColinKaepernick

    4

  • LuckyLoser

    2

Top Posters In This Topic

data(ChickWeight)

View(ChickWeight)
library(dplyr)
library(ggplot2)
 
data(ChickWeight)
View(ChickWeight)
library(dplyr)
library(ggplot2)
 
ChickWeight_New = ChickWeight %>%
  group_by(Time) %>%
  arrange(Time) %>%
  mutate(Avg_Weight = mean(weight))
View(ChickWeight_New)
 
ggplot(data = ChickWeight_New,aes(x = Time,y= Avg_Weight)) +
  geom_point() +
  geom_smooth(method=lm,se=FALSE,colour = "red") + theme_bw()
 
 
If you want to add Coefficients use geom_abline..I hope this helps..Please let me know if u need anything
Link to comment
Share on other sites

 

data(ChickWeight)

View(ChickWeight)
library(dplyr)
library(ggplot2)
 
data(ChickWeight)
View(ChickWeight)
library(dplyr)
library(ggplot2)
 
ChickWeight_New = ChickWeight %>%
  group_by(Time) %>%
  arrange(Time) %>%
  mutate(Avg_Weight = mean(weight))
View(ChickWeight_New)
 
ggplot(data = ChickWeight_New,aes(x = Time,y= Avg_Weight)) +
  geom_point() +
  geom_smooth(method=lm,se=FALSE,colour = "red") + theme_bw()
 
 
If you want to add Coefficients use geom_abline..I hope this helps..Please let me know if u need anything

 

 

Bhayya naku ggplot anth idea ledhu nenu chesina varaku and detailed question niku PM chesa can you please help me with the answet . 

Link to comment
Share on other sites


data(ChickWeight)
View(ChickWeight)
library(dplyr)
library(ggplot2)


data(ChickWeight)
View(ChickWeight)
library(dplyr)
library(ggplot2)

ChickWeight_New = ChickWeight %>%
group_by(Time) %>%
arrange(Time) %>%
mutate(Avg_Weight = mean(weight))
View(ChickWeight_New)

ggplot(data = ChickWeight_New,aes(x = Time,y= Avg_Weight)) +
geom_point() +
geom_smooth(method=lm,se=FALSE,colour = "red") + theme_bw()


If you want to add Coefficients use geom_abline..I hope this helps..Please let me know if u need anything


Bhayya can you please help question and solution pm chesanu
Link to comment
Share on other sites

R ante caste anukuna ido technology na....ishtamochina perlu petti odultunaru tools and technology ki

 

 

R anedi not a tool, its a programming language used to analyse data. Its open source. and its free. Invented by Ross Ihaka. rossihaka.jpg

 

https://www.stat.auckland.ac.nz/showperson?firstname=Ross&surname=Ihaka

 

 

ithanu world lo vunna staticians andarani oka table ki techhi implemented.

 

https://www.auckland.ac.nz/en.html

 

 

entire R can be downloadable for Free.

 

https://www.r-project.org/

 

most universities n non profits are using in-place of SAS n SPSS.

 

 

 

 

if you want to learn in and out plz go through.

 

https://www.coursera.org/specializations/jhudatascience

Link to comment
Share on other sites

×
×
  • Create New...