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

NAME

Data::Frame::Indexer - Function interface for indexer

VERSION

version 0.0050_01

DESCRIPTION

A basic feature needed in a data frame library is the ability of subsetting a data frame by either numeric indices or string labels of columns and rows. Because of the ambiguity of number and string in Perl, there needs a way to allow user to explicitly specify whether their indexer is by numeric indices or string labels. This modules provides functions that serves this purpose.

FUNCTIONS

indexer_s

    indexer_s($x)

Returns either undef or an indexer object, by trying below rules,

indexer_i

    indexer_i($x)

Similar to indexer_s but would fallback to an indexer object of Data::Frame::Indexer::Integer.

AUTHORS

  • Zakariyya Mughal <zmughal@cpan.org>

  • Stephan Loyd <sloyd@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014, 2019 by Zakariyya Mughal, Stephan Loyd.

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