The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Personality::Type::MBTI - Myers-Briggs Type Indicator (MBTI)

VERSION

Version 0.05

SYNOPSIS

The Myers-Briggs Type Indicator (MBTI) is a personality test designed to assist a person in identifying some significant personal preferences.

The Indicator is frequently used in the areas of pedagogy, group dynamics, employee training, leadership training, marriage counseling, and personal development.

The types the MBTI sorts for, known as dichotomies, are extraversion / introversion, sensing / intuition, thinking / feeling and judging / perceiving. Each of the sixteen types is referred to by a four-letter abbreviation, such as ESTJ or INFP, indicating that type's preference in each dichotomy.

The MBTI includes 93 forced-choice questions, which means there are only two options. Participants may skip questions if they feel they are unable to choose. Using psychometric techniques, such as item response theory, the MBTI will then be scored and will attempt to identify which dichotomy the participant prefers. After taking the MBTI, participants are given a readout of their score, which will include a bar graph and number of how many points they received on a certain scale.

This module calculates the MBTI scores on each scale and, eventually, will provide integration with other personality type theories (e.g. Keirsey, Big5).

    use Personality::Type::MBTI;

    my $mbti = Personality::Type::MBTI->new();

    # sample results from a questionnaire
    my @test = qw/i e i e i n s n s n t f t f t p j p j p/;

    # calculate type
    my $type = $mbti->type( @test );

    print "Your type is '$type'\n";

FUNCTIONS

new

Creates a new Personality::Type::MBTI object.

type

Receives an array containing the results of a questinnaire (letters [eisnftpj]).

Returns:

  • scalar context

    In scalar context, it returns the lower-case mbti type (e.g. "intp").

    If any dimension cannot be correctly identified (e.g., same score for "extroversion" and "introversion") it will be marked with an "x" (e.g. "xntp")

  • list context

    In list context, it returns a hash containing the count for each dimension.

dominant

Receives a personality type (e.g. "infp") and returns its dominant function (in this case, "fi" - introverted feeling).

auxiliary

Receives a personality type (e.g. "infp") and returns its auxiliary function (in this case, "ne" - extroverted intuition).

AUTHOR

Nelson Ferraz, <nferraz at gmail.com>

BUGS

Please report any bugs or feature requests to bug-personality-type-mbti at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Personality-Type-MBTI. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Personality::Type::MBTI

You can also look for information at:

SEE ALSO

COPYRIGHT & LICENSE

Copyright 2007 Nelson Ferraz, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.