Kaliyah's Bioinformatics Portfolio

Logo

My class work for BIMM 143

View the Project on GitHub kadeimanu/bimm143_github

Class 4 R Intro

Kaliyah Adei-Manu

Making basic plots in R

x <- 1:50
plot (x)

Make a Sin Plot

plot (x, sin(x))

Let’s make it nicer:

plot (x, sin(x), typ="l", col="blue", lwd=2)

log(10, base =10)
[1] 1