Learn R Programming

flattabler (version 2.1.2)

remove_right: Remove right columns from a pivot table

Description

Remove right columns from the pivot table represented by the object.

Usage

remove_right(pt, n)

# S3 method for pivot_table remove_right(pt, n)

Value

A pivot_table object.

Arguments

pt

A pivot_table object.

n

A number, number of columns to remove.

Details

A pivot table should only contain label rows and columns, and an array of values, usually numeric data.

All columns not belonging to the pivot table must be removed.

This function is very useful because it is not necessary to know the number of columns in the table.

See Also

pivot_table

Other pivot table transformation functions: extract_labels(), fill_labels(), fill_values(), remove_agg(), remove_bottom(), remove_cols(), remove_empty(), remove_k(), remove_left(), remove_rows(), remove_top(), replace_dec(), unpivot()

Examples

Run this code

pt <- pt_ex |> remove_right(3)

Run the code above in your browser using DataLab