6 December 2016

Key things that helped me learn R

  • Time
  • Inspiration
  • 'Customers'
  • Open Source Learning & Teaching

Time - Code regularly

Usually in the evening in my own time!

Inspiration

  • data viz I couldn't do in Excel

Inspiration

'Customers'

'Customers'

My first cluster dendrogram

# make the cluster dendrogram object using the hclust() and dist() functions
hc <- hclust(dist(rbind(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12)))  

# plot the cluster dendrogram 
plot(hc, xlab = ("Patient Samples"))

'Customers'

Open Source Learning & Teaching