Skip to content

Instantly share code, notes, and snippets.

@Ewen2015
Last active May 21, 2016 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ewen2015/6ef2dc36fac4dd20c684b4278f0b659f to your computer and use it in GitHub Desktop.
Save Ewen2015/6ef2dc36fac4dd20c684b4278f0b659f to your computer and use it in GitHub Desktop.
<snippet>
<content><![CDATA[
# =============================================================
# Basic
import os
# Fundamental Libraries for Scientific Computing
import numpy as np
import pandas as pd
import scipy as sp
# Math and Statistics
import sympy as sym
import statsmodels as sm
# Plotting and Visualization
import matplotlib.pyplot as plt
plt.style.use('ggplot')
import seaborn as sns
# Machine Learning
import sklearn as sk
from sklearn.cross_validation import train_test_split
import xgboost as xgb
# =============================================================
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>pymodule</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.python</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment