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
# nba | |
# Analyzes the NBA Salary to PER data set | |
# | |
# Author: Benjamin Bengfort <[email protected]> | |
# Created: Sat Sep 20 09:35:11 2014 -0400 | |
# | |
# Copyright (C) 2014 Bengfort.com | |
# For license information, see LICENSE.txt | |
# | |
# ID: nba.py [] [email protected] $ |
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
__author__ = 'Linwood Creekmore' | |
## Wrote this for Software Engineering for Data Class ## | |
## My first solo creation | |
import csv | |
f = open('nba_players.csv') | |
csv_f = csv.reader(f) |
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
#!/bin/bash | |
# Author: | |
# Linwood Creekmore | |
# email: [email protected] | |
# navigate to home directory; just for clean start | |
cd ~ && | |
# exit out of whatever conda environment you are in |
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
#!/bin/bash | |
# Author: | |
# Linwood Creekmore | |
# email: [email protected] | |
# navigate to home directory; just for clean start | |
cd ~ && | |
# exit out of whatever conda environment you are in |
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
# Author: | |
# Linwood Creekmore III | |
# email: [email protected] | |
# Acknowledgements: | |
# http://programmingadvent.blogspot.com/2013/06/kmzkml-file-parsing-with-python.html | |
# http://gis.stackexchange.com/questions/159681/geopandas-cant-save-geojson | |
# https://gist.github.com/mciantyre/32ff2c2d5cd9515c1ee7 | |
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
[D 02:18:44.009 NotebookApp] Searching ['/Users/linwood/projects', '/Users/linwood/.jupyter', '/Users/linwood/anaconda3/envs/scipyML/etc/jupyter', '/usr/local/etc/jupyter', '/etc/jupyter'] for config files | |
[D 02:18:44.010 NotebookApp] Looking for jupyter_config in /etc/jupyter | |
[D 02:18:44.010 NotebookApp] Looking for jupyter_config in /usr/local/etc/jupyter | |
[D 02:18:44.010 NotebookApp] Looking for jupyter_config in /Users/linwood/anaconda3/envs/scipyML/etc/jupyter | |
[D 02:18:44.011 NotebookApp] Looking for jupyter_config in /Users/linwood/.jupyter | |
[D 02:18:44.011 NotebookApp] Looking for jupyter_config in /Users/linwood/projects | |
[D 02:18:44.012 NotebookApp] Looking for jupyter_notebook_config in /etc/jupyter | |
[D 02:18:44.012 NotebookApp] Looking for jupyter_notebook_config in /usr/local/etc/jupyter | |
[D 02:18:44.012 NotebookApp] Looking for jupyter_notebook_config in /Users/linwood/anaconda3/envs/scipyML/etc/jupyter | |
[D 02:18:44.034 NotebookApp] Loaded config file: /Users/linwood/anaconda3/envs/scipyML/etc/jupyter/ |
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
[D 15:17:30.243 NotebookApp] Searching ['/Users/linwood', '/Users/linwood/.jupyter', '/Users/linwood/anaconda3/envs/scipyML/etc/jupyter', '/usr/local/etc/jupyter', '/etc/jupyter'] for config files | |
[D 15:17:30.244 NotebookApp] Looking for jupyter_config in /etc/jupyter | |
[D 15:17:30.244 NotebookApp] Looking for jupyter_config in /usr/local/etc/jupyter | |
[D 15:17:30.244 NotebookApp] Looking for jupyter_config in /Users/linwood/anaconda3/envs/scipyML/etc/jupyter | |
[D 15:17:30.245 NotebookApp] Looking for jupyter_config in /Users/linwood/.jupyter | |
[D 15:17:30.245 NotebookApp] Looking for jupyter_config in /Users/linwood | |
[D 15:17:30.246 NotebookApp] Looking for jupyter_notebook_config in /etc/jupyter | |
[D 15:17:30.246 NotebookApp] Looking for jupyter_notebook_config in /usr/local/etc/jupyter | |
[D 15:17:30.246 NotebookApp] Looking for jupyter_notebook_config in /Users/linwood/anaconda3/envs/scipyML/etc/jupyter | |
[D 15:17:30.246 NotebookApp] Loaded config file: /Users/linwood/anaconda3/envs/scipyML/etc/jupyter/jupyter_notebook_c |
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
[I 21:11:04 InstallContribNbextensionsApp] jupyter contrib nbextension install --user | |
[I 21:11:04 InstallContribNbextensionsApp] Installing jupyter_contrib_nbextensions nbextension files to jupyter data directory | |
[I 21:11:04 InstallContribNbextensionsApp] Installing /Users/linwood/anaconda3/lib/python3.5/site-packages/jupyter_contrib_nbextensions/nbextensions/code_prettify -> code_prettify | |
[I 21:11:04 InstallContribNbextensionsApp] Up to date: /Users/linwood/Library/Jupyter/nbextensions/code_prettify/code_prettify.js | |
[I 21:11:04 InstallContribNbextensionsApp] Up to date: /Users/linwood/Library/Jupyter/nbextensions/code_prettify/code_prettify.yaml | |
[I 21:11:04 InstallContribNbextensionsApp] Up to date: /Users/linwood/Library/Jupyter/nbextensions/code_prettify/demo-jv.gif | |
[I 21:11:04 InstallContribNbextensionsApp] Up to date: /Users/linwood/Library/Jupyter/nbextensions/code_prettify/demo-py.gif | |
[I 21:11:04 InstallContribNbextensionsApp] Up to date: /Users/linwood/Library/Jupyter/nbextensions/code_prettify/demo-R |
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
# By: Linwood Creekmore | |
# https://www.linkedin.com/in/linwood-creekmore-iii-a2174538/ | |
from dateutil.parser import parse | |
from concurrent.futures import ProcessPoolExecutor | |
from functools import partial | |
import datetime | |
import re | |
import numpy as np | |
import pandas as pd |
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
# Author | |
# Linwood Creekmore III | |
# April 8 2017 | |
# heavy input from http://socialmedia-class.org/twittertutorial.html | |
# [email protected] | |
import re | |
import copy | |
import numpy as np | |
import pandas as pd |
OlderNewer