Its always good to getting know about our data. It is a great way to visualize our data intuitively. When it come to visualization, plots and graphs will be our first choice. In statistical analysis, people call this procedure as Plot and Play. I am going to use ggplot package in R for basic plots. In order to install ggplot in R, you can simply type install.packages("ggplot") . Minimum use of domain knowledge is always good in statistical analysis. But in practice, it is really hard to purely analyze without domain knowledge. In following section I am going to see what kind of relations exist between chosen attributes. These attributes are chosen based on domain knowledge, which means I think they can possible be interrelated. But you are free to select any pair of attributes and identify patterns. I created a function called corPlot to plot graphs using ggplot given a data frame and set of attributes. corPlot <- function (dataFrame, attribute_x, attribute_y, xN...