GEN220_2020

2020 Edition of the Class


Project maintained by biodataprog Hosted on GitHub Pages — Theme by mattgraham

Plotting and Data viz with R

Reading in data

library(dplyr)
library(tidyverse)

tblr <- read.csv("data.csv",sep=",")

tidyverse

Filter data

Add a new column with mutate

NewTbl <- tblr %>% mutate(BinKb = Start / 1000)

head(NewTbl)

Histogram

Heatmap

Treeview