Roberto Parra
25 de Octubre
An application that help you quickly explore the different correlations between variables of College Entrance was built
Import the database and load the packages that will be useful
DMAT<-read.csv("./DATAMAT2.csv",
header=TRUE,sep=";",dec=",")
DMAT<-DMAT[complete.cases(DMAT),]
library(ggplot2)
library(grid)
library(gridExtra)
library(dplyr)
library(scales)
source('tcol.R')
with(DMAT,hist(LG, col = tcol(3), border = 'white',main=paste("Distribution of LG"),breaks=20))
20 color Palette
tcol(demo=T)
NULL