box_plot

Produces a box plot over a factor or factors

Example

>>> df=DataFrame()
>>> df.read_tbl('data/words~ageXcondition.csv')
>>> df.box_plot('WORDS')

produces ‘box(words).png’

box(words).png

Example with a single factor

>>> df.box_plot('WORDS', ['AGE'])

produces ‘box(WORDS~AGE).png’

box(WORDS~AGE).png

Example with two factors

>>> df.box_plot('WORDS', ['AGE','CONDITIONS'])

produces ‘box(WORDS~AGE_X_CONDITION).png’

box(WORDS~AGE_X_CONDITION).png