Problem Statement
[Read More]
Anomalous Behavior of Barley Yield
Libraries Required library(ggplot2) library(MASS) library(GGally) library(agridat) library(broom) library(tidyr) library(gridExtra) Data Import Lets import the data and have a look at summary of it. data=agridat::minnesota.barley.yield summary(data) Plots for barley yields varied by gen(variety) and year at each site ggplot(data=data, aes(x=year, y = yield ,colour = gen, group= gen)) +geom_line()+ geom_point() +...
[Read More]
What's your Nationality?
This report provides primary analysis of Pew-Research-Center-National-Identity-Report-Data Load Required Libraries library(ggplot2) library(grid) library(GGally) Reading Data into R birthplace<-read.csv('birthplace.csv',header = FALSE,fileEncoding = 'UTF-8-BOM') language<-read.csv('language.csv',header = FALSE,fileEncoding = 'UTF-8-BOM') religion<-read.csv('religion.csv',header = FALSE,fileEncoding = 'UTF-8-BOM') customs<-read.csv('customs.csv',header = FALSE,fileEncoding = 'UTF-8-BOM') Standardizing scores for all four Questions birthplace["score"]<-(4*birthplace[2]+3*birthplace[3]+2*birthplace[4] +birthplace[5])/(birthplace[2]+birthplace[3]+birthplace[4]+birthplace[5]) language["score"]<-(4*language[2]+3*language[3]+2*language[4] +language[5])/(language[2]+language[3]+language[4]+language[5]) religion["score"]<-(4*religion[2]+3*religion[3]+2*religion[4] +religion[5])/(religion[2]+religion[3]+religion[4]+religion[5]) customs["score"]<-(4*customs[2]+3*customs[3]+2*customs[4]...
[Read More]
Exploring American Presidential Elections [1948-2012] using Logistic/Weighted Regression
For the study of Logistic Regression and Weighted Regression we will be using ANES Time Series Cumulative Data, containing election data from 1948 to 2012.\
[Read More]
Property-Evaluation-now-at-Finger-Tips
Predictive Analytics using advanced ML techniques
“Buying a house is a stressful thing.”
[Read More]