Module pandas_profiling.report.structure.variables.render_common

Expand source code
from pandas_profiling.config import config
from pandas_profiling.report.presentation.frequency_table_utils import (
    freq_table,
    extreme_obs_table,
)


def render_common(summary):
    n_extreme_obs = config["n_extreme_obs"].get(int)
    n_freq_table_max = config["n_freq_table_max"].get(int)

    template_variables = {
        "freq_table_rows": freq_table(
            freqtable=summary["value_counts"],
            n=summary["n"],
            max_number_to_print=n_freq_table_max,
        ),
        "firstn_expanded": extreme_obs_table(
            freqtable=summary["value_counts"],
            number_to_print=n_extreme_obs,
            n=summary["n"],
            ascending=True,
        ),
        "lastn_expanded": extreme_obs_table(
            freqtable=summary["value_counts"],
            number_to_print=n_extreme_obs,
            n=summary["n"],
            ascending=False,
        ),
    }

    return template_variables

Functions

def render_common(summary)
Expand source code
def render_common(summary):
    n_extreme_obs = config["n_extreme_obs"].get(int)
    n_freq_table_max = config["n_freq_table_max"].get(int)

    template_variables = {
        "freq_table_rows": freq_table(
            freqtable=summary["value_counts"],
            n=summary["n"],
            max_number_to_print=n_freq_table_max,
        ),
        "firstn_expanded": extreme_obs_table(
            freqtable=summary["value_counts"],
            number_to_print=n_extreme_obs,
            n=summary["n"],
            ascending=True,
        ),
        "lastn_expanded": extreme_obs_table(
            freqtable=summary["value_counts"],
            number_to_print=n_extreme_obs,
            n=summary["n"],
            ascending=False,
        ),
    }

    return template_variables