Coding Resources
Project Description: List of Coding and Data Analysis Resources.
Last updated: 2023-10-01 12:37:23 -0500 -0500
This page houses programming resources I found useful when working on a project. It is likely going to be very disorganized.
Sentiment Analysis
- Sentimentr - Calculates polarity sentiment by incorporating weighting for valence modifiers, happy -> more happy etc. Thought to improve on simple bag of word approaches but faster than coreNLP.
- Alfano’s ‘Moral Universals’ Project You will need to create an osf.io account if you do not already have one to see this project.
- extra Moral Foundations Dictionary - A moral intuitions dictionary constructed using crowd sourced annotations. Thought to capture moral intuitions. See the white paper emfd.
Python
- The Definitive Guide to Python import Statements is a good guide for the import mess in Python
- pydash has some nice high level functions
- use glom for working with nested data
- use conda for a data science setup and managing your environment
Tools
- Pandoc for document conversions
- imagemagick for image manipulation
- gifsicle for working with gifs
- ffmpeg for media conversion
- q allows for running SQL over CSVs
- jq for working with json strings in the command line
- live-server is easier than
python -m SimpleHTTPServer