Skip to content

Instantly share code, notes, and snippets.

View chupvl's full-sized avatar

Vladimir Chupakhin chupvl

View GitHub Profile
# Docker file that installs docker container with rdkit, ipython notebook and matplotlib
#
# rename this file to "Dockerfile"
# build with: sudo docker build -t rdkit .
# run with: sudo docker run rdkit
# port 8888 gets mapped to another port. Find it with: sudo docker ps
# point your browser to mapped port
FROM ubuntu
# Add universe repository
@chupvl
chupvl / 1. Setup.R
Created February 16, 2013 05:50 — forked from zachmayer/1. Setup.R
#Setup
rm(list = ls(all = TRUE)) #CLEAR WORKSPACE
#Directory
setwd("~/Overfitting")
#Load Required Packages
library('caTools')
library('caret')
library('glmnet')