Skip to content

bkitej/mudpie

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This library scores psych test answers.

Adapted from: http://www.ohiofamilyrights.com/docs/MMPI_scoring.html

Usage:

from mudpie import questions, score
import pandas as pd

if respondent_is_male():
    gender = 0
else:
    gender = 1
answers = [answer_the_question(q) for q in questions]
scores = score(answers, gender)

scales = pd.DataFrame(scores['scale_table'])
critical_items = pd.DataFrame(scores['ci_table'])
profile_elevation = scores['pe']

About

Psych test scorer.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages