Skip to content

R-like range() function #288

Closed
Closed
@lbeltrame

Description

@lbeltrame

In R, if I supply range(dataframe), I get back a vector of the minimum value in all the dataframe and the maximum value in all the dataframe.

DataFrame's min() and max() functions operate only on single columns. The way to do it currently is

minimum, maximum = (min(df.min()), max(df.max())

It's not a critical limitation, but it is convenient to have at times.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions