This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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] $ |
NewerOlder