In [6]:
# Import data wrangling R Package
library(dplyr)
irisiris %>%
group_by(Species) %>%
summarise(Sepal.Width.Avg = mean(Sepal.Width)) %>%
arrange(Sepal.Width.Avg)
iris %>%
group_by(Species) %>%
summarise(Sepal.Width.Avg = mean(Sepal.Width)) %>%
arrange(Sepal.Width.Avg)
In [7]:
iris %>%
group_by(Species) %>%
summarise(Sepal.Width.Avg = mean(Sepal.Width)) %>%
arrange(Sepal.Width.Avg)
In [8]:
library(ggplot2)
In [9]:
ggplot(data=iris, aes(x=Sepal.Length, y=Sepal.Width, color=Species)) + geom_point(size=3)
In [25]:
install.packages("meta", repos = "http://cran.us.r-project.org")
#install.packages("metafor", "/home/user/anaconda3/lib/R/library")
In [24]:
library(meta)
m <- metacount(Ne, Me, Se, Nc, Mc, Sc, studlab=paste(author, year), data=data1)
forest(m, xLab="Maximum % fall in FEV1")
In [ ]: