fn interp_view(
args: &[RValue],
_named: &[(String, RValue)],
context: &BuiltinContext<'_>,
) -> Result<RValue, RError>Expand description
Display a data.frame as a nicely formatted table.
Terminal equivalent of RStudio’s View pane. Shows column headers with types, row numbers, and truncates wide columns (max 30 chars) and long data frames (first 20 rows + “… N more rows” footer).
@param x a data.frame to display @param title optional title (unused in terminal mode) @return x, invisibly