kelli-jean / easyR

R Package to make R easier to use.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

easyR

Making R easier to use. To install run the following in R:

devtools::install_github("kelli-jean/easyR")

easyR initial setup

# Set working directory to the current directory of the source file
setwd_cur()

easyR arrangement of ggplots

library(easyR)
library(ggplot2)
library(gridExtra)
library(grid)
cars = mtcars
cars$cyl = factor(cars$cyl)
p1 = ggplot(cars, aes(x=wt, y=mpg, group=cyl, colour=cyl)) +
     geom_point() +
     theme(legend.position="bottom")
p2 = ggplot(cars, aes(x=wt, y=hp, group=cyl, colour=cyl)) +
     geom_point()
legend = get_legend(p1)
grid.arrange(arrangeGrob(remove_legend(p1),
                         remove_legend(p2),
                         ncol=2),
             legend,
             heights=c(10,1))

easyR data quality checks

library(easyR)
is_all_unique(cars$speed)

About

R Package to make R easier to use.


Languages

Language:R 100.0%