Last active
May 21, 2016 17:56
-
-
Save Ewen2015/6ef2dc36fac4dd20c684b4278f0b659f to your computer and use it in GitHub Desktop.
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
<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