Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,920 changes: 2,920 additions & 0 deletions Kaggle/DATA/house-prices/full.csv

Large diffs are not rendered by default.

1,460 changes: 1,460 additions & 0 deletions Kaggle/DATA/house-prices/test_cleaned.csv

Large diffs are not rendered by default.

1,461 changes: 1,461 additions & 0 deletions Kaggle/DATA/house-prices/train_cleaned.csv

Large diffs are not rendered by default.

Binary file added Kaggle/Kshitiz Gutpa Spring 2018 Resume.docx
Binary file not shown.
23 changes: 23 additions & 0 deletions Kaggle/feature_eng.r
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
library(ggplot2); library(dplyr): library(readr)

# read in the data

clean <- read_r('train_cleaned.csv')


num_featrs <- c('LotFrontage', 'LotArea' ,'YearBuilt', 'YearRemodAdd',
'MasVnrArea','BsmtFinSF1','BsmtUnfSF', 'TotalBsmtSF','1stFlrSF',
'2ndFlrSF','GrLivArea',
'TotRmsAbvGrd','GarageArea', 'WoodDeckSF', 'OpenPorchSF',
'EnclosedPorch','PoolArea','MiscValue')

y <- select(poly_data, 'SalePrice')
scatter_plots <- function(df, feat) {
df %>%
ggplot(aes(feat, df$SalePrice)) + facet_wrap(~ feat, scales = "free") +
theme(legend.position = "none") + labs(x = "", y = "")
}

box_plots <- function(df) {

}
Loading