Skip to content

Instantly share code, notes, and snippets.

View linwoodc3's full-sized avatar

Linwood Creekmore linwoodc3

  • United States
View GitHub Profile
@linwoodc3
linwoodc3 / polyglotOnMacOSXPython27.sh
Last active September 1, 2018 14:32
Bash script that successfully installs the polyglot multilingual text (NLP) processing toolkit on a MacOSX computer with Python 2.7 and Anaconda.
#!/bin/bash
# Author:
# Linwood Creekmore
# email: valinvescap@gmail.com
# navigate to home directory; just for clean start
cd ~ &&
# exit out of whatever conda environment you are in
@linwoodc3
linwoodc3 / polyglotOnMacOSX35.sh
Last active January 23, 2023 03:28
Bash script that successfully installs the polyglot multilingual text (NLP) processing toolkit on a MacOSX computer with Python 3 and Anaconda
#!/bin/bash
# Author:
# Linwood Creekmore
# email: valinvescap@gmail.com
# navigate to home directory; just for clean start
cd ~ &&
# exit out of whatever conda environment you are in
@linwoodc3
linwoodc3 / lin_nba_player_salary_stats.py
Created January 31, 2015 20:10
This summarizes the salary of NBA players. Eventually, I will compare the salary to the player efficiency rating.
__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)
@linwoodc3
linwoodc3 / nba.py
Created January 31, 2015 20:07
From Ben Bengfort
# nba
# Analyzes the NBA Salary to PER data set
#
# Author: Benjamin Bengfort <benjamin@bengfort.com>
# Created: Sat Sep 20 09:35:11 2014 -0400
#
# Copyright (C) 2014 Bengfort.com
# For license information, see LICENSE.txt
#
# ID: nba.py [] benjamin@bengfort.com $