--- title: "tabshiftr - Reshape disorganized messy data" output: bookdown::html_document2: fig_caption: yes number_sections: yes theme: spacelab highlight: pygments toc: yes toc_float: yes bibliography: references.bib urlcolor: blue fontsize: 12pt linestretch: 1.15 link-citations: yes vignette: > %\VignetteIndexEntry{reorganising messy data} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" ) options(knitr.kable.NA = '.') library(tabshiftr) library(knitr) ``` # Rationale Tables as places where data are recorded can be pretty messy. The 'tidy' paradigm in R proposes that data are organised so that variables are recorded in columns, observations in rows and that there is only one value per cell [@Wickham2014]. This, however, is only one interpretation of how data should be organised [@Broman] and especially when scraping data off the internet, one frequently encounters spreadsheets that don't follow this paradigm. The `tidyr` package is one of the most popular tools to bring data into a tidy format. However, up until today it is limited to tables that are already organised into topologically coherent (rectangular) chunks and any messiness beyond that requires dedicated scripts for reorganization. In `tabshiftr` we try to describe and work with a further dimension of messiness, where data are available as so-called *disorganized (messy) data*, data that are not yet arranged into rectangular form. The approach of `tabshiftr` is based on describing the arrangement of such tables in a so-called [schema](https://en.wikipedia.org/wiki/Database_schema) description, which is then the basis for automatic reorganization via the function `reorganise()`. Typically there is an input and an output schema, describing the arrangement of the input and output tables, respectively. The advantage of this procedure is that input and output tables exist explicitly and the schema maps the transformation of the data. As we want to end up with tidy tables, the output schema is pre-determined by a tidy table of the included variables and the input [schema needs to be put together](#makeSchema) by you, the user. # The basics Data can be disorganised according to multiple dimensions. To understand those dimensions, we first need to understand the nature of data. Data \"of the same kind\" are collected in a **variable**, which is always a combination of a **name** and the **values**. In a table, names are typically in the topmost row and values are in the column below that name ([Tab. 1](#tabExample1)). Conceptually, there are two types of variables in any table: 1. Variables that contain categorical levels that identify the units for which values have been observed (they are called *identifying variables* here). 2. Variables that have been measured or observed and that consequently represent the target values of that measurement, be they continuous or categorical (they are called *observed variables* here). Moreover, a table is part of a **series** when other tables of that series contain the same variables with slightly different values for the identifying variables, irrespective of how the distinct tables of that series are arranged. | identifying variable | observed variable (categorical) | observed variable (continuous) | | :- | :- | :- | | sample 1 | blue | 10 | | sample 2 | green | 20 | | sample 3 | red | 30 | Table: Table 1: An example table containing one identifying and two observed variables, with the variable names in the topmost row and the values in all consecutive rows. Here, we do use the term **spreadsheet** to denote what would typically be seen as *table*, as the data we deal with here are typically \"disorganised\" and thus not what would be recognised as a table. Even though data in many spreadsheets are disorganised, they are mostly not non-systematic. Especially in complex spreadsheets, one often encounters a situation where a set of variables occurs more than once with the same or very similar arrangement, which we call **cluster** here. Data that are part of clusters are split along one of the, typically categorical, variables (the **cluster ID**), with the aim to increase the visual accessibility or direct the focus for human readers ([Tab. 2](#tabExample2)). This may also be the case where data are split up into several files or spreadsheets of a file, where the cluster ID can be found in the file or spreasheet name or the meta-data. In many cases, the cluster ID is an **implicit variable**, a variable that is not immediately recogniseable as such. | sample | colour | intensity | sample | colour | intensity | | :- | :- | :- | :- | :- | :- | | sample 1 | | | sample 2 | | | | | blue | 10 | | blue | 11 | | | green | 20 | | green | 24 | | | red | 30 | | red | 13 | | | | | | | | | sample 3 | | | sample 4 | | | | | blue | 20 | | blue | 10 | | | green | 15 | | green | 16 | | | red | 33 | | red | 21 | Table: Table 2: An example of a table with several clusters of comparable variables. # How to make a schema description ## Decision tree To set up a schema description, go through the following questions step by step and provide the respective answer in the respective function. [Linked tables](#tablesTypes) can serve as examples to compare against and right after the decision tree there is a step-by-step hands-on example of how to build a schema description. 1. **Variables**: Clarify which are the identifying variables and which are the observed variables. Make sure not to mistake a listed observed variable ([Tab. 10](#long)) as an identifying variable. 2. **Format**: Provide potentially information about the table format in `setFormat()`. 3. **Clusters**: In case there are clusters, provide in `setCluster()` - are data clustered into several files or spreadsheets and is the information used to separate the data (i.e., the spreadsheet name) a variable of interest ([Tab. 6](#implicitVar)) or are the data clustered within one spreadsheet ([Tab. 12](#clusHor), [Tab. 13](#clusId), [Tab. 14](#clusMeas) & [Tab. 15](#clustNest))? - are data clustered according to an identifying variable ([Tab. 12](#clusHor), [Tab. 13](#clusId)), or are observed variables grouped into clusters ([Tab. 14](#clusMeas))? - are clusters nested into a grouping variable of interest ([Tab. 15](#clustNest))?

4. **Identifying variables**: provide in `setIDVar()` - in which column(s) is the variable? - is the variable a result of merging several columns ([Tab. 4](#mergeCol)) or must it be split off of another column ([Tab. 5](#splitCol))? - is the variable wide (i.e., its values are in several columns) ([Tab. 7](#one_wide_id), [Tab. 8](#wide_obs) & [Tab. 9](#two_wide_id))? In this case, the values will look like they are part of the header. - is the variable distinct from the main table ([Tab. 16](#distVar))?

5. **Observed variable**: provide in `setObsVar()` - in which column(s) is the variable? - is the variable wide and nested in a wide identifying variable (i.e., the name of the observed variable is below the name of the identifying variable) ([Tab. 7](#one_wide_id) & [Tab. 9](#two_wide_id))? - is the variable listed (i.e., the names of the variable are given as a value of an identifying variable) ([Tab. 10](#long))?

## Additional remarks - To work with `tabshiftr`, tables need to be read in while treating any header rows *as data*, i.e., by not setting the first row as header - To spell this out explicitly, there are two almost inverse cases where the type of a variable is confused and the **name** and **values** of a variable end up in the wrong place: 1. Tables are wide when the header contains the **values** of one or more (identifying) variables as if they were names. 2. When tables are long, it can occur that the **name** of several observed variables are gathered as if they were values into a single column. - Each column should be treated as a character data type, because some columns might contain data with both numeric and character cells. ```{r, eval=F} input <- read_csv(file = ..., col_names = FALSE, col_types = cols(.default = "c")) ``` - `reorganise()` takes care of reformatting the data-types into the most permissive data type that does not introduce `NA`s where there should be data, i.e, if a variable can be numeric, it is formatted as numeric column, otherwise it will be stored as a character column. - When setting up a schema description, some generalisations are hard to wrap your mind around. Try imagining that once you have set a variable, it's values are "cut out" from the input table and pasted into the reshaped table. For instance, once clusters are set for [Tab. 6](#implicitVar), imagine that the meta-data header isn't part of the table anymore, resulting in a much simpler table. Or for [Tab. 16](#distVar), once territories are set, imagine that the respective `unit1/2/3` values disappear, which makes it easier to see that the respective column is actually a tidy column of commodities. ## An example As an example, we show here how to build a schema description for a table that has a wide identifying variable and a listed observed variable. This table contains additionally some dummy information one would typically encounter in tables, such as `empty_col`s and rows and data that are not immediately of interest (`other_observed`). ```{r} kable(input <- tabs2shift$listed_column_wide) ``` In this case we don't need to set clusters and can start immediately with setting the first id variable `territories`, which is in the first column and otherwise tidy. The order by which we set the variables determines where they ocurr in the output table. Any of the setters start by default with an empty schema, in case none is provided to them from a previous setter, thus none needs to be provided at the beginning of a schema. ```{r} schema <- setIDVar(name = "territories", columns = 1) ``` Since version 0.3.0, `tabshiftr` comes with getters that allow to debug the current schema description. To do this, however, the schema first needs to be validated. This is in order to make sure that all the generic information are evaluated with the respective input. After that, a getter can be used to extract the respective information, for example the reorganised id variables with `getIDVars()`. ```{r} validateSchema(schema = schema, input = input) %>% getIDVars(input = input) ``` After seeing that our specification results in a meaningful output, we can continue setting the other id variables `years` (tidy and in column 2) and `commodities` (spread over two columns and the values are in the first row). Note, how we pipe the previous schema into the next setter. This results in the next variable being added to that schema. ```{r} schema <- schema %>% setIDVar(name = "year", columns = 2) %>% setIDVar(name = "commodities", columns = c(6, 7), rows = 1) ``` Validating and checking for id variables again results in the following ```{r} validateSchema(schema = schema, input = input) %>% getIDVars(input = input) ``` The id variable `commodities` is clearly wide (more than one column) and its' values are not repeated four times, as it should be, judging by the combination of the other variables. However, this is an expected tentative output that will be handled in a later step and the id variables have been specified correctly. Next, we set the listed observed variables. *Listed* means that the column names of the observed variables are treated as if they were the values of an identifying variable (in column 4), while the values are in the columns 6 and 7. In this case, the values need to be filtered by `value` (i.e., the values of that variable are found in columns 6 and 7, where column 4 contains `value`). ```{r} schema <- schema %>% setObsVar(name = "harvested", columns = c(6, 7), key = 4, value = "harvested") %>% setObsVar(name = "production", columns = c(6, 7), key = 4, value = "production") ``` We then get the following observed variables, which is also an expected tentative output. ```{r} validateSchema(schema = schema, input = input) %>% getObsVars(input = input) ``` From both, the output of `getIDVars` and `getObsVars` we can calculate how many and which combinations of data exist (e.g., the two columns in the observed variables correspond to the two values of the identifying variable `commodities`) and that they still need to be pivoted to be in a tidy arrangement. The `reorganise()` function carries out the steps of validating, extracting the variables, pivoting the tentative output and putting the final table together automatically, so it merely requires the finalized (non-validated) `schema` and the `input` table. ```{r} schema # has a pretty print function reorganise(input = input, schema = schema) ``` # Table types In this section we look at some examples of disorganized data, discuss the dimension along which they are disorganized and show which schema description should be used to reorganize them. All of the following examples contain an `other_observed`, an `empty_col` column and an empty row, which serve the purpose of dummy information or formatting that could be found in any table and should not disturb the process of reorganizing. You can run all the examples by simply loading the schema and calling `reorganise(input = tabs2shift$..., schema = schema)` with the respective table that is plotted for this example. ## Table contains one cluster ### Tidy table In case the observed variables are arranged into individual columns ([Tab. 3](#tabTidy)), we have tidy data [@Wickham2014], which are largely already in the target arrangement. The tidy table may however, still contain unneeded data, need different names, or transformation factors for the values. ```{r} kable(tabs2shift$tidy) ``` Table: Table 3: A largely tidy table. ```{r} schema <- setIDVar(name = "territories", columns = 1) %>% setIDVar(name = "year", columns = 2) %>% setIDVar(name = "commodities", columns = 3) %>% setObsVar(name = "harvested", columns = 5) %>% setObsVar(name = "production", columns = 6, factor = 0.1) reorganise(input = tabs2shift$tidy, schema = schema) ``` ### Mismatch of columns and variables Sometimes it may be the case that the number of variables is not the same as there are columns because either one variable is spread over several column, or one column contains several variables. In the former case, columns need to be merged ([Tab. 4](#splitCol)) and in the latter case, columns need to be split via [regular expressions](https://edrub.in/CheatSheets/cheatSheetStringr.pdf) ([Tab. 5](#mergeCol)). For example, `.+?(?=_)` gives everything up until the first `_` and `(?<=\\_).*` everything after the `_ `. ```{r} kable(input <- tabs2shift$split_column) ``` Table: Table 4: The variables `year` is split up into two columns. ```{r, eval=FALSE} schema <- setIDVar(name = "territories", columns = 1) %>% setIDVar(name = "year", columns = c(2, 4), merge = " ") %>% setIDVar(name = "commodities", columns = 5) %>% setObsVar(name = "harvested", columns = 6) %>% setObsVar(name = "production", columns = 7) ``` ```{r} kable(tabs2shift$merged_column) ``` Table: Table 5: The variables `year` and `commodities` are stored in the same column. ```{r, eval=FALSE} schema <- setIDVar(name = "territories", columns = 1) %>% setIDVar(name = "year", columns = 2, split = ".+?(?=_)") %>% setIDVar(name = "commodities", columns = 2, split = "(?<=\\_).*") %>% setObsVar(name = "harvested", columns = 4) %>% setObsVar(name = "production", columns = 5) ``` ### Implicit variables When data are split up into clusters that are stored in separate files or spreadsheets, the cluster ID is often recorded not in the table as an explicit variable, but is only provided in the file or table name. In those cases, we have to register this cluster ID as an identifying variable nevertheless, to output a consistent table. ```{r} kable(input <- tabs2shift$implicit_variable) ``` Table: Table 6: The information about which territory we are dealing with is missing or implied by some meta-data. ```{r, eval=FALSE} schema <- setCluster(id = "territories", left = 1, top = 4) %>% setIDVar(name = "territories", value = "unit 1") %>% setIDVar(name = "year", columns = 4) %>% setIDVar(name = "commodities", columns = 1) %>% setObsVar(name = "harvested", columns = 2) %>% setObsVar(name = "production", columns = 3) ``` ### Wide variables In case identifying variables are factors with a small number of levels, those levels may be falsely used as names of other variables, where they would be next to each other and thus \"wide\" ([Tab. 7](#one_wide_id)). Those other variables (both identifying and observed variables) would then be \"nested\" in the wide identifying variables. In those cases we have to record for the identifying variable(s) the columns and the row in which the **values of the identifying variable** are found (they will look like they are part of the header). For the observed variable(s) we need to record the columns and the row where the **name of that variable** is found. ```{r} kable(input <- tabs2shift$one_wide_id) ``` Table: Table 7: The observed variables are nested within the identifying variable `commodities`. ```{r, eval=FALSE} schema <- setIDVar(name = "territories", columns = 1) %>% setIDVar(name = "year", columns = 3) %>% setIDVar(name = "commodities", columns = c(4, 6), rows = 1) %>% setObsVar(name = "harvested", columns = c(4, 6), top = 2) %>% setObsVar(name = "production", columns = c(5, 7), top = 2) ``` The same is also true in case the identifying variables are actually nested within the observed variables, i.e., the names of the observed variables are on top of the names of the id variables ([Tab. 8](#wide_obs)). However, if an observed variables is in the topmost row (and there are no clusters), `top = 1` can be omitted. ```{r} kable(input <- tabs2shift$wide_obs) ``` Table: Table 8: The identifying variable `commodities` is nested within the observed variables. ```{r, eval=FALSE} schema <- setIDVar(name = "territories", columns = 1) %>% setIDVar(name = "year", columns = 2) %>% setIDVar(name = "commodities", columns = c(3:6), rows = 2) %>% setObsVar(name = "harvested", columns = c(3, 4)) %>% setObsVar(name = "production", columns = c(5, 6)) ``` In case several variables are nested within other variables, we have to specify for all nested or nesting variables in which respective rows their values sit. ```{r} kable(input <- tabs2shift$two_wide_id) ``` Table: Table 9: The observed variables are nested within the identifying variable `year` and `commodities`. ```{r, eval=FALSE} schema <- setIDVar(name = "territories", columns = 1) %>% setIDVar(name = "year", columns = c(2, 6), rows = 1) %>% setIDVar(name = "commodities", columns = c(2, 4, 6, 8), rows = 2) %>% setObsVar(name = "harvested", columns = c(2, 4, 6, 8), top = 3) %>% setObsVar(name = "production", columns = c(3, 5, 7, 9), top = 3) ``` ### Listed *observed variables* Some tables contain a column where the names of observed variables (`harvested` and `production`) are treated as if they were the values of an identifying variable (`dimension`), while the values are presented in only one column (`values`) ([Tab. 10](#long)). To end up with tidy data in those cases, we need to extract the values associated with the observed variables. Thus, we define the observed variables and specify the `key = ` in which the variable names sit, and the `value = ` the variable name has, to extract that variable. ```{r} kable(input <- tabs2shift$listed_column) ``` Table: Table 10: The variable names of the observed variable are treated as if they were the values of the identifying variable `dimension`. ```{r, eval=FALSE} schema <- setIDVar(name = "territories", columns = 1) %>% setIDVar(name = "year", columns = 2) %>% setIDVar(name = "commodities", columns = 3) %>% setObsVar(name = "harvested", columns = 7, key = 6, value = "harvested") %>% setObsVar(name = "production", columns = 7, key = 6, value = "production") ``` Moreover, (several) identifying variables may be wide additionally and we have to proceed as mentioned above, by providing the columns and the rows of the variable values (which appear to be names). ```{r} kable(input <- tabs2shift$listed_column_wide) ``` Table: Table 11: The identifying variable `commodities` is treated as if it were the observed variables while the variable names of the observed variable are treated as if they were the values of the identifying variable `dimension`. ```{r, eval=FALSE} schema <- setIDVar(name = "territories", columns = 1) %>% setIDVar(name = "year", columns = 2) %>% setIDVar(name = "commodities", columns = c(6, 7), rows = 1) %>% setObsVar(name = "harvested", columns = c(6, 7), key = 4, value = "harvested") %>% setObsVar(name = "production", columns = c(6, 7), key = 4, value = "production") ``` ### Misplaced columns or rows WIP ## Table contains several clusters Clusters are typically of the same arrangement within one table, they can be repeated along rows (horizontally) or along columns (vertically), but also a non-systematic distribution is possible. Moreover, clusters may be nested into some grouping variable in a similar way that data are nested into clusters. A table could also be treated like a cluster when the table is not only composed of the table, but perhaps also text in the form of some table description (that may be scattered in the document and) that does not allow the table to start at the table origin in the topmost left cell. ### Horizontal clusters In case clusters are sitting right next to each other in the same origin row ([Tab. 12](#clusHor)), it is sufficient to provide the topmost row and all leftmost columns at which a new cluster starts. ```{r} kable(input <- tabs2shift$clusters_horizontal) ``` Table: Table 12: Horizontal clusters of the identifying variable `period`. ```{r, eval=FALSE} schema <- setCluster(id = "territories", left = c(1, 6), top = 2) %>% setIDVar(name = "territories", columns = c(1, 6), rows = 2) %>% setIDVar(name = "year", columns = c(2, 7)) %>% setIDVar(name = "commodities", columns = c(1, 6)) %>% setObsVar(name = "harvested", columns = c(3, 8)) %>% setObsVar(name = "production", columns = c(4, 9)) ``` ### Vertical clusters For vertically arranged clusters ([Tab. 13](#clusId)), just like for the horizontal case, the respective rows and columns need to be provided. ```{r} kable(input <- tabs2shift$clusters_vertical) ``` Table: Table 13: Vertical clusters of the identifying variable `period`. ```{r, eval=FALSE} schema <- setCluster(id = "territories", left = 1, top = c(3, 9)) %>% setIDVar(name = "territories", columns = 1, rows = c(3, 9)) %>% setIDVar(name = "year", columns = 2) %>% setIDVar(name = "commodities", columns = 5) %>% setObsVar(name = "harvested", columns = 6) %>% setObsVar(name = "production", columns = 7) ``` ### Clusters of observed variables The previous two types of clusters are clusters of identifying variables, but it may also be the case that the observed variables are split up into distinct clusters. Here, we need to specify first of all `setClusters(..., id = "observed")` to indicate that clusters are observed variables. Next, we need to set up the observed variables so that they contain `"key = "cluster"` and in `value` the number of the cluster this variable can be found in. ```{r} kable(input <- tabs2shift$clusters_observed) ``` Table: Table 14: Vertical clusters of the observed variables. ```{r, eval=FALSE} schema <- setCluster(id = "observed", left = 1, top = c(2, 12)) %>% setIDVar(name = "territories", columns = 2) %>% setIDVar(name = "year", columns = 3) %>% setIDVar(name = "commodities", columns = 5) %>% setObsVar(name = "harvested", columns = 7, key = "cluster", value = 1) %>% setObsVar(name = "production", columns = 7, key = "cluster", value = 2) ``` ### Clusters that are nested into another variable When (some) clusters are nested into a (grouping) variable of interest, not only the cluster positions need to be specified, but also their relation to the grouping variable. Similar to the cluster ID, this group ID also needs to be specified as an identifying variable and needs to be provided as `group = ...` and the membership of each cluster to a group needs to be specified in `member = ...`. The cluster position needs to be specified just as it would be without groups. ```{r} kable(input <- tabs2shift$clusters_nested) ``` Table: Table 15: Clusters are grouped according to a variable of interest that should also be captured. ```{r, eval=FALSE} schema <- setCluster(id = "sublevel", group = "territories", member = c(1, 1, 2), left = 1, top = c(3, 8, 15)) %>% setIDVar(name = "territories", columns = 1, rows = c(2, 14)) %>% setIDVar(name = "sublevel", columns = 1, rows = c(3, 8, 15)) %>% setIDVar(name = "year", columns = 7) %>% setIDVar(name = "commodities", columns = 2) %>% setObsVar(name = "harvested", columns = 5) %>% setObsVar(name = "production", columns = 6) ``` ### Variables that are distinct from a cluster When not all identifying variables can be provided relative to the cluster origin, for example because they are missing for some clusters, it makes more sense to define such a variable as a distinct variable. This is done by providing `row` and `col` as absolute values and setting `distinct = TRUE`. Other variables that are all arranged in the same way in each cluster can be specified so that their row and column indices are given relative to the cluster position (`relative = TRUE`), as shown in the alternative shema below. ```{r} kable(input <- tabs2shift$clusters_messy) ``` Table: Table 16: Several clusters where one variable is not available for each cluster, but distinct of them. ```{r, eval=FALSE} schema <- setCluster(id = "territories", left = c(1, 1, 4), top = c(1, 8, 8)) %>% setIDVar(name = "territories", columns = c(1, 1, 4), rows = c(2, 9, 9)) %>% setIDVar(name = "year", columns = 4, rows = c(3:6), distinct = TRUE) %>% setIDVar(name = "commodities", columns = c(1, 1, 4)) %>% setObsVar(name = "harvested", columns = c(2, 2, 5)) %>% setObsVar(name = "production", columns = c(3, 3, 6)) schema_alt <- setCluster(id = "territories", left = c(1, 1, 4), top = c(1, 8, 8)) %>% setIDVar(name = "territories", columns = 1, rows = .find(row = 2, relative = TRUE)) %>% setIDVar(name = "year", columns = 4, rows = c(3:6), distinct = TRUE) %>% setIDVar(name = "commodities", columns = .find(col = 1, relative = TRUE)) %>% setObsVar(name = "harvested", columns = .find(col = 2, relative = TRUE)) %>% setObsVar(name = "production", columns = .find(col = 3, relative = TRUE)) ``` ### Messy clusters In case several clusters are neither aligned along a row nor a column, and are all of differing size, the respective information need to be provided at the same index of the respective property. For example, three clusters, where the first cluster starts at (1,1) and is 3 by 4 cells in size, where the second clusters starts at (5,2) and is 5 by 5 cells in size, and so on, needs to be specified as below. ```{r, eval=FALSE} schema <- setCluster(id = ..., left = c(1, 2, 5), top = c(1, 5, 1), width = c(3, 5, 2), height = c(4, 5, 3), ...) %>% setIDVar(name = "territories", columns = .find(col = 1, relative = TRUE)) %>% ... ``` Additionally, given that at least the tables within each cluster are all arranged in the same way, the contained variables can be specified so that their row and column indices are given relative to the cluster position (`relative = TRUE`). If also that is not the case, the row and column values for each cluster need to be provided for the respective variables in the same way as for cluster positions. # References