Skip to content

Substitution for DataFrame.info() #303

@GideonKoenig

Description

@GideonKoenig

Is your feature request related to a problem? Please describe

In pandas there is a method DataFrame.info() that provides a rough overview over the content of a table. There is currently no substitution, although this feature is used a lot.

Desired solution

Implement a (improved) version of DataFrame.info() for the Table class.

Example

The Pandas funtion works like this:

>>> int_values = [1, 2, 3, 4, 5]
>>> text_values = ['alpha', 'beta', 'gamma', 'delta', 'epsilon']
>>> float_values = [0.0, 0.25, 0.5, 0.75, 1.0]
>>> df = pd.DataFrame({"int_col": int_values, "text_col": text_values,
...                   "float_col": float_values})
>>> df
    int_col text_col  float_col
0        1    alpha       0.00
1        2     beta       0.25
2        3    gamma       0.50
3        4    delta       0.75
4        5  epsilon       1.00

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