knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)

jolisPlots

The goal of jolisPlots is basically to teach me how to develop a package.

Installation

You can install jolisPlots from github with:

# install.packages("devtools")
devtools::install_github("Rmomal/jolisPlots")

Example

This is a basic example which shows you how to solve a common problem:

## basic example code
library(tidyverse)
library(jolisPlots)
long<-transform(diamonds[,c("x","y","z")])
graph_bar(long)

graph_point(diamonds,"carat","price","cut")


Rmomal/jolisPlots documentation built on May 26, 2019, 3:30 a.m.