ECON304 Midterm
This is example.
# R code for ECON 304
# 11 July 2013
# Aj Champ, me@pairach.com
# Code 2 - Heatmap with NBA data
nba <- read.csv("http://datasets.flowingdata.com/ppg2008.csv", sep=",")
nba
head(nba)
names(nba)
install.packages("psych")
row.names(nba) <- nba$Name
head(nba)
nba <- nba[,2:20]
head(nba)
nba_matrix <- data.matrix(nba)
heatmap(nba_matrix)
nba_heatmap <- heatmap(nba_matrix, Rowv=NA, Colv=NA,
col = heat.colors(256),
scale="column", margins=c(5,10),
main = "Heatmap of NBA players")



Aiming to thrive not just to survive. Make an impression to the examiners that you deserve a doctorate degree!

I cope with such an intense and important discussions in the viva, we need to be mindfulness. This will help us understand the questions and answer it better. Meditation is a good way to practice mindfulness. You can do it by just sit on your chair in the office and close your eyes. Then watch your breath and thought. Knowing what you are doing.





