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
# 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 |