--- title: "Transforming a pivot table into a flat table with the flattabler package" author: "Jose Samos (jsamos@ugr.es)" date: "2023-08-08" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Transforming a pivot table into a flat table with the flattabler package} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ``` # Introduction Pivot tables are generally used to present raw and summary data. They are generated from spreadsheets and, more recently, also from R ([`pivottabler`](https://CRAN.R-project.org/package=pivottabler)). If we generate pivot tables from our own data, `flattabler` package is not necessary. But, if we get data in pivot table format and need to represent or analyse it using another tool, this package can be very helpful: It can save us several hours of programming or manual transformation. `flattabler` package offers a set of operations that allow us to transform one or more pivot tables into a flat table. The rest of this document is structured as follows: First, an illustrative example of transforming a pivot table into a flat table is presented. Then, the operations available in `flattabler` package, classified according to their purpose, are presented. Finally, the document ends with the conclusions section. # An illustrative example In this example, given a pivot table and the flat table obtained from it, the transformations performed are presented. Next, a function is defined that groups these transformations. This function is applied to a list of pivot tables to obtain a single flat table. Finally, it is shown how the flat table can be modified using functions from [`tidyverse`](https://CRAN.R-project.org/package=tidyverse) package components. ## Pivot table A *pivot table* allows to represent information in a structured way, mainly to be analysed by a person or to make a graphical representation of it. In addition to a header and/or footer, it contains label rows and columns, and a matrix of values, usually numeric data. ```{r, results = "asis", echo = FALSE} pt <- flattabler::df_ex rownames(pt) <- sprintf("r%d",1:nrow(pt)) colnames(pt) <- sprintf("c%d",1:ncol(pt)) pander::pandoc.table(pt, split.table = Inf, emphasize.italics.cols = 1:2, emphasize.italics.rows = 1:3) ``` The table above, contained in the `df_ex` variable of the package, has the following parts: - The ***header*** is made up of row _r1_ and the intersection between rows and columns of labels (cells of _c1_ and _c2_ with _r2_ and _r3_). Let us suppose that the content of the cell _(r1, c1)_ is especially relevant, it is part of the table header and identifies the content of this pivot table with respect to others: It is the identifier of the *page*. - Columns _c1_ and _c2_, also rows _r2_ and _r3_, contain ***labels***, except those of the intersection that are part of the header. It is common to try not to repeat the values of the outer labels, it being understood that, if there is no value, the value of that position is the last one shown in the same row or column (this is the case in column _c1_ and in row _r2_). In the innermost labels, if there are no values, it is because the corresponding position in the outer row or column corresponds to an aggregate (this is the case in column _c2_ and in row _r3_). - The ***matrix of values*** is made up of rows and columns after those containing labels (rows from _r4_ on, and columns from _c3_ on). Each value of this matrix is characterized by the combination of labels of the corresponding row and column. It is common to find null values in that matrix because the data is not produced or recorded for the combination of labels that define it, that is, the data is usually scattered. In addition to base data, aggregated data can be included in the matrix. Since it was intended for a person, the thousands separator had been used and, both this and the decimal separator, had been used with the Spanish style. ## Obtaining a flat table A flat database or flat-file database is a database that only contains a single table. A *flat table* is a generally denormalized table that is not related to other tables. It is not necessarily tidy data (in the sense of the [`tidyverse`](https://CRAN.R-project.org/package=tidyverse) package) but in each column all the data must be of the same type, so that it can be easily stored in a RDBMS (*Relational Database Management System*). A pivot table is not a flat table, but from a pivot table we can obtain a flat table, that is what we are going to do with the help of the `flattabler` package. Below are the transformations performed using its functions. ```{r} library(flattabler) ft <- pivot_table(df_ex) |> set_page(1, 1) |> remove_top(1) |> define_labels(n_col = 2, n_row = 2) |> fill_labels() |> remove_agg() |> fill_values() |> remove_k() |> replace_dec() |> unpivot() ``` Starting from the pivot table in the variable `df_ex`: 1. We get an object using the `pivot_table()` function, the constructor of the `pivot_table` class. 1. We define that the value that identifies the pivot table (its page) is in cell _(r1, c1)_, by means of `set_page(1, 1)`. 1. We should leave only the labels and the matrix of values, therefore rows or columns with other information have to be removed. The cells between the rows and columns of labels are ignored (cells of _c1_ and _c2_ with _r2_ and _r3_). We delete the first row using `remove_top(1)` because it does not contain labels. 1. Then, we define the number of rows and columns containing labels using `define_labels(n_col = 2, n_row = 2)`. There are two columns and two rows of labels. 1. Since there are more than one row or column with labels, the values of the labels of the first row and column have not been repeated. They are filled using `fill_labels()`. 1. The pivot table contains aggregated data. It is removed by `remove_agg()`. It is recognized exclusively because there are no values in the row or column of the labels next to the array of values. 1. The array of values has gaps that, instead of having a numeric value, have an empty string. In R it is more appropriate to have `NA` if the data is not available. This operation is performed through `fill_values()`. 1. The example is a Spanish report that uses thousands and decimal separators in the value matrix. We need to adapt them to the R syntax for numbers. This operation is carried out using `remove_k()` to remove the thousands separator and `replace_dec()` to replace the decimal separator. 1. Finally, it is transformed into a flat table by `unpivot()`: each row corresponds to a value with its combination of labels. By default, `NA` values are not considered. The result obtained can be seen in the following table. An additional label has been added with the value that identifies the pivot table, the pivot table _page_. ```{r, results = "asis", echo = FALSE} pander::pandoc.table(ft) ``` Since this table is not intended to be analysed directly by a person, aggregated data has been removed as well as data that was not available for tag combinations (of course this is optional). The numerical data has been transformed so that it can be easily processed in R. The result of the transformations is a `tibble` that can be further transformed using the functions of the [`tidyverse`](https://CRAN.R-project.org/package=tidyverse) package. ## Transforming a set of pivot tables Once we have defined the necessary transformations for a pivot table, we can apply them to any other with the same structure. Candidate tables **can have different number of rows or columns**, depending on the number of labels, but they **must have the same number of rows and columns of labels, and the same number of header or footer rows**, so that the transformations are the same for each table. To easily perform this operation, we define a function `f` from the transformations, as shown below. ```{r} f <- function(pt) { pt |> set_page(1, 1) |> remove_top(1) |> define_labels(n_col = 2, n_row = 2) |> fill_labels() |> remove_agg() |> fill_values() |> remove_k() |> replace_dec() |> unpivot() } ``` The only difference from the original transformation is that we don't need to build a `pivot_table` object because the input functions provided by the package build it automatically. The package has functions that allow data to be read in either text format or Excel format, from a single file or from a folder with multiple files. For example, the following code reads files in CSV format contained in a package data folder. The result is a list of `pivot_table` objects that can be directly transformed. ```{r} folder <- system.file("extdata", "csvfolder", package = "flattabler") lpt <- read_text_folder(folder) class(lpt[[1]]) ``` Given a list of pivot tables, `lpt`, `flatten_table_list()` applies the transformation defined by function `f` to each of them, and merges the results into a flat table. ```{r} ftl <- flatten_table_list(lpt, f) ``` In this case, the full result is not shown in this document because it takes up too much space, but a sample is shown below. ```{r, results = "asis", echo = FALSE} ft_sample <- dplyr::slice_sample(ftl, prop = 0.20) |> dplyr::arrange(page, col1, col2, row1, row2) pander::pandoc.table(ft_sample) ``` Once we have a flat table, implemented using `tibble`, we can use [`tidyverse`](https://CRAN.R-project.org/package=tidyverse) package components to transform it, as shown below. In this case all results are displayed. ```{r} t <- ftl |> tidyr::pivot_wider(names_from = page, values_from = value) |> dplyr::rename(B = col1, A = col2, E = row1, D = row2) |> dplyr::select(A, B, D, E, M1, M2, M3, M4) |> dplyr::arrange(A, B, D, E) ``` ```{r, results = "asis", echo = FALSE} pander::pandoc.table(t) ``` # Pivot table operations To transform one or more pivot tables into a flat table, the workflow is as follows: 1. __Pivot table import__: Import pivot tables into an object or list of objects. We start from data in text or Excel files, or previously imported data in a data frame, and generate pivot table objects from them. 1. __Pivot table definition__: Study the structure of the data and define the pivot table. If there are several homogeneous pivot tables, we will focus on one, the definition should be applicable to all of them. * Define the characteristics of the pivot table: Number of rows and columns with labels, and page value (identifies the pivot table). * Remove the rows and columns that are not part of the pivot table: It should only contain the rows and columns of labels and an array of values. 1. __Pivot table transformation__: Optionally, complete or transform the components (labels and values) of the pivot table. 1. __Flat table generation__: Generate the flat table from the definition of the pivot table and the available data. If there are multiple pivot tables, apply the defined operations to all of them and merge the result. In this section, the operations available in `flattabler` package, classified according to this workflow, are presented. ## Pivot table import The objective of import operations is to obtain external data that contains one or more pivot tables to transform them. Three formats have been considered: text file, Excel file, and data frame. In the case of working with files, the situation of jointly treating all the files in a folder has also been considered. In the case of Excel, alternatively, all the sheets in a file can be treated together. The S3 `pivot_table` class has been defined in the package. Transform operations are defined for objects of this class. Import operations can be classified into two groups: those that return a `pivot_table` object, and those that return a list of `pivot_table` objects. Objects in a list can be transformed together. ### Operations that return an object * `pivot_table()`: Creates a `pivot_table` object from a data frame. The data frame is expected to contain one or more pivot tables. Additional information associated with the pivot table can be indicated. The data frame data is converted to character type. Example: ```{r} pt <- pivot_table(df_ex) pt <- pivot_table(df_ex, page = "M4") ``` * `read_text_file()`: Reads a text file and creates a `pivot_table` object. The file is expected to contain one or more pivot tables. Each line in the file corresponds to a row in a table; within each row, columns are defined by a separator character. The file name can be included as part of the object attributes. Example: ```{r} file <- system.file("extdata", "csv/set_v_ie.csv", package = "flattabler") pt <- read_text_file(file, define_page = TRUE) ``` * `read_excel_sheet()`: Reads an Excel file sheet and creates a `pivot_table` object. The sheet is expected to contain one or more pivot tables. Each line in the sheet corresponds to a row in a table. The file and sheet names can be included as part of the object attributes. Example: ```{r} file <- system.file("extdata", "excel/set_v.xlsx", package = "flattabler") pt <- read_excel_sheet(file, define_page = 3) ``` ### Operations that return a list of objects * `divide()`: Divides a table into tables separated by some empty row or column. Sometimes multiple pivot tables are placed in a text document or Excel sheet, imported as one text table. This operation recursively divides the initial table into tables separated by some empty row or column. Once a division has been made, it tries to divide each part of the result. An object is generated for each indivisible pivot table. Returns a list of `pivot_table` objects. Example: ```{r} pt <- pivot_table(df_set_h_v) lpt <- pt |> divide() ``` * `read_text_folder()`: Reads all text files in a folder and creates a list of `pivot_table` objects, one from each file. Each file is expected to contain a pivot table. Each line in a file corresponds to a row in a table; within each row, columns are defined by a separator character. File name can be included as part of each object attributes. Example: ```{r} folder <- system.file("extdata", "csvfolder", package = "flattabler") lpt <- read_text_folder(folder) ``` * `read_excel_folder()`: Reads one sheet from each of the Excel files in a folder and creates a list of `pivot_table` objects, one from each sheet or, which is the same in this case, one from each file. Each sheet is expected to contain a pivot table. Each line in a file corresponds to a row in a table. File and sheet names can be included as part of each object attributes. Example: ```{r} folder <- system.file("extdata", "excelfolder", package = "flattabler") lpt <- read_excel_folder(folder) ``` * `read_excel_file()`: Reads sheets from an Excel file and creates a `pivot_table` object list, one from each sheet. Each sheet is expected to contain a pivot table. Each line in a sheet corresponds to a row in a table. The file and sheet names are included as part of each object attributes. Example: ```{r} file <- system.file("extdata", "excel/set_sheets.xlsx", package = "flattabler") lpt <- read_excel_file(file) ``` ## Pivot table definition Once we have a `pivot_table` object or list of objects, pivot tables have to be defined. Each object generated by import operations contains a text table, it is expected to contain a pivot table, but may also have more information, generally in the form of a table header or footer. Through this set of operations we transform the text table in the object into a pivot table and define its characteristics. A `pivot_table` object should only contain __label rows and columns__, and an __matrix of values__, usually numeric data. Additional information can be used to identify the pivot table relative to other similar tables: can be used to define the pivot table __page__. Page: We consider the page of the pivot table as the literal that identifies it with respect to other homogeneous tables; generally it is the value of an attribute (i.e., 2023, 2022,...) or the name of a variable (i.e., amount, profit,...). When multiple pivot tables are integrated into a flat table, the page is essential to distinguish the origin of the data. It is considered as an additional label. The workflow is generally as follows: 1. Explore the table to determine its distribution and characteristics. If we start from a list of `pivot_table` objects, we will explore each one of the tables. In order to transform them together, they should have homogeneous structure. We will use _member reference_ (instead of _list slicing_) to access the objects in the list. Example: `pt <- lpt[[1]]`. 1. In case the text table contains multiple pivot tables, they can be obtained using `divide()`, which returns a list of `pivot_table` objects; therefore, we return to the first step. 1. Define the characteristics of the pivot table: Number of rows and columns with labels, and page value. 1. Remove the rows and columns that are not part of the labels or matrix of values: It should only contain the rows and columns of labels and a matrix of values. Therefore, we still need to review the functions for these last two steps.: Functions to define the pivot table characteristics, and to remove the rows and columns that are not part of it. ### Define pivot table characteristics * `get_page()` and `set_page()`: The page value is defined when importing data, sometimes it is included in the file or spreadsheet name. Using these functions, you can get the defined values and redefine them. The content of a table cell or string can be defined as a page value. Example: ```{r} pt <- pt |> set_page(1, 1) ``` * `define_labels()`: This function defines the quantity of rows and columns that contain labels. Example: ```{r} pt <- pt |> define_labels(n_col = 2, n_row = 2) ``` ### Remove rows and columns * `remove_empty()` * `remove_rows()` * `remove_cols()` * `remove_top()` * `remove_bottom()` * `remove_left()` * `remove_right()` Remove rows and columns that are not part of the pivot table. The most frequent situation will be having to eliminate the header or footer of the table (top and bottom rows), the rest of the functions are defined to try to contemplate all possible cases. Example: ```{r} pt <- pt |> remove_top(1) ``` ## Pivot table transformation Once a `pivot_table` object only contains pivot table data, and its attributes have been defined, it could be transformed into a flat table. However, we can take advantage of the table structure to modify and complete it. Therefore, optionally, we can complete and transform the components of the pivot table: Labels and values. ### Transform labels * `fill_labels()`: Fills missing values in row and column labels for a pivot table. When there is more than one row or column with labels, the first ones usually do not repeat the values. In the illustrative example, this occurs in column _c1_ and row _r2_. By default, in columns they are filled down, in rows to the right. Example: ```{r} pt <- pt |> fill_labels() ``` * `remove_agg()`: Removes pivot table rows and columns that contain aggregated data. Aggregated data is recognized exclusively because the label of the row or column closest to the matrix of values is empty. Example: ```{r} pt <- pt |> remove_agg() ``` * `extract_labels()`: Sometimes a table column includes values of multiple label fields, this is generally known as compact table format. Given a column number and a set of labels, it generates a new column with the labels located at the positions they occupied in the original column and removes them from it. Example: ```{r} pt <- pivot_table(df_ex_compact) |> extract_labels(col = 1, labels = c("b1", "b2", "b3", "b4", "Total general")) ``` * `get_col_values()`: To facilitate the study of the labels included in the same column of several tables, this function gets the values of the indicated column in a list of tables. It may be useful to use it before `extract_labels()`. Example: ```{r} file <- system.file("extdata", "csv/set_v_compact.csv", package = "flattabler") pt <- read_text_file(file) lpt <- pt |> divide() df <- get_col_values(lpt, start_row = 4) labels <- sort(unique(df$label)) ``` ### Transform values * `fill_values()`: The array of values has gaps that, instead of having a numeric value, have an empty string. This operation fills with `NA` missing values in a pivot table value array. Example: ```{r} pt <- pt |> fill_values() ``` * `remove_k()`: Values sometimes include a thousands separator that can be removed using this function. Example: ```{r} pt <- pt |> remove_k() ``` * `replace_dec()`: Values sometimes include a decimal separator different from the one needed; it can be replaced using this function. Example: ```{r} pt <- pt |> replace_dec() ``` ## Flat table generation In order to generate a flat table from a `pivot_table` object, it is an essential requirement to have properly defined its attributes and that **it only contains the pivot table label rows and columns, and the matrix of values**. Optionally, if the table has a usual structure, we could have transformed the values and labels, if necessary. We can generate a flat table from a pivot table (a `pivot_table` object) or from a list of pivot tables (a list of `pivot_table` objects). ### Generation from a pivot table * `unpivot()`: Transforms a pivot table into a flat table (implemented by a `tibble`). An additional column with page information can be included. `NA` values can be excluded from the array of values. Example: ```{r} ft <- pivot_table(df_ex) |> set_page(1, 1) |> remove_top(1) |> define_labels(n_col = 2, n_row = 2) |> fill_labels() |> remove_agg() |> fill_values() |> remove_k() |> replace_dec() |> unpivot() ``` ### Generation from a list of pivot tables * `flatten_table_list()`: Given a list of `pivot_table` objects and a transformation function that flattens a `pivot_table` object, transforms each table using the function and merges the results into a flat table. Example: ```{r} f <- function(pt) { pt |> set_page(1, 1) |> define_labels(n_col = 2, n_row = 2) |> remove_top(1) |> fill_labels() |> remove_agg() |> fill_values() |> remove_k() |> replace_dec() |> unpivot() } ft <- flatten_table_list(lpt, f) ``` # Conclusions `flattabler` package offers a set of operations that allow us to transform one or more pivot tables into a flat table. Transformation operations have been designed to be intuitive and easy to use. With them, it has been possible to properly transform all the pivot tables found so far by the author. If an unforeseen situation arises, the proposed operations are also useful and can be supplemented by operations available in the components of [`tidyverse`](https://CRAN.R-project.org/package=tidyverse) package.