If you do this
#df is some DataFrame
#pipe the first 10 rows to be formatted with PrettyTables
first(df, 10) |> pretty_table
you get the expected outcome.
But I seek (e.g.) this:
#pick first 10 rows, print with PrettyTables without borders (and so on)
first(df, 10) |> pretty_table(tf = borderless)
Is there some syntax recommended?