radiobee-dev / radiobee /trim_df.py
freemt
Update gradio 3.0 Dataframe output no longer feasible
8a677e1
raw
history blame contribute delete
631 Bytes
"""Trim df."""
import pandas as pd
# fmt: off
def trim_df(
df1: pd.DataFrame,
len_: int = 4,
ignore_index: bool = True,
) -> pd.DataFrame:
# fmt: on
"""Trim df."""
if len(df1) > 2 * len_:
df_trimmed = pd.concat(
[
df1.iloc[:len_, :],
pd.DataFrame(
# [["...", "...",]],
[["..."] * len(df1.columns)],
columns=df1.columns,
),
df1.iloc[-len_:, :],
],
ignore_index=ignore_index,
)
return df_trimmed
return df1