This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
import sys | |
denominations = [1, 2,3] | |
def find_all_denom(value, denom, current_denom): | |
if value < 0: | |
return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
multiplot <- function(..., plotlist=NULL, cols) { | |
require(grid) | |
# Make a list from the ... arguments and plotlist | |
plots <- c(list(...), plotlist) | |
numPlots = length(plots) | |
# Make the panel | |
plotCols = cols # Number of columns of plots |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f = lambda x : x * (x + 1) / 2 | |
f(999/3)*3 + f(999/5)*5 - f(999/15)*15 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
import argparse | |
import os | |
import pwd | |
import subprocess | |
import string | |
import random | |
import signal | |
import sys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
import argparse | |
import os | |
import pwd | |
import subprocess | |
import string | |
import random | |
import signal | |
import sys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
import argparse | |
import os | |
import pwd | |
import subprocess | |
import string | |
import random | |
import signal | |
import sys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get a subset of values from the training set where days spent is zero | |
temp <- subset(train, DaysInHospital_Y2 == log1p(0)) | |
# Get 100 samples from it with replacement and add it to a new dataframe | |
uniform_set <- temp[sample(nrow(temp), 100, replace=TRUE),] | |
# Keep on doing this for other values as well | |
uniform_set <- merge(uniform_set, temp[sample(nrow(temp), 100, replace=TRUE),], all=T) | |
# Train a tree on it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Transform days spent to log(1 + x) | |
y1_data$DaysInHospital_Y2 <- log1p(y1_data$DaysInHospital_Y2) | |
# Divide the set, 80% for train and 20% for test | |
indexes <- sample(1:nrow(y1_data), size=0.2*nrow(y1_data)) | |
test <- y1_data[indexes,] | |
train <- y1_data[-indexes,] | |
# Remove unwanted features from both the sets | |
train <- subset(train, select=-c(MemberID_t, YEAR_t, DaysInHospital, trainset, DaysInHospital_Y3, age_05, PayDelay_max, PayDelay_min, PayDelay_stdev, LOS_max, LOS_min, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <algorithm> | |
#include <string> | |
#include <cstdlib> | |
using namespace std; | |
int main(){ | |
int n; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <algorithm> | |
#include <string> | |
#include <cstdlib> | |
using namespace std; | |
int main(){ | |
int n; |