Skip to content

Instantly share code, notes, and snippets.

View lotterdata's full-sized avatar

Stephen Penrice lotterdata

  • Northern New Jersey
View GitHub Profile
@lotterdata
lotterdata / anova_1way.py
Last active October 18, 2015 16:26
one-way anova in python
# One-way ANOVA. 'filename' is the name of a csv file where the
# first field in each line is the name of a group and the second line
# is a numerical value. Mimics Excel output.
from sys import argv
import scipy.stats
script, filename = argv