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 (Wickham 2014). This, however, is only one interpretation of how data should be organised (Broman and Woo 2018) 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 reorganisation.
In tabshiftr
we try to describe and work with a further dimension of messiness, where data are available as so-called disorganised (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 description, which is then the basis for automatic reorganisation 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 by you, the user.
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). Conceptually, there are two types of variables in any table:
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.
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). 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.
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 in the next section can serve as examples to compare against.
Variables: Clarify which are the identifying variables and which are the observed variables. Make sure not to mistake a listed observed variable (Tab. 10) as an identifying variable.
Format: Provide potentially information about the table format in setFormat()
.
Clusters: In case there are clusters, provide in setCluster()
Identifying variables: provide in setIDVar()
Observed variable: provide in setObsVar()
tabshiftr
, tables need to be read in while treating any header rows as data, i.e., by not setting the first row as header, because in disorganised tables it’s often not only the first row that is part of the header.<- read_csv(file = ...,
input 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.unit1/2/3
values disappear to see that the respective column is actually a tidy column of commodities.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
).
kable(input <- tabs2shift$listed_column_wide)
X1 | X2 | X3 | X4 | X5 | X6 | X7 | X8 |
---|---|---|---|---|---|---|---|
territories | period | . | dimension | other_observed | soybean | maize | empty_col |
unit 1 | year 1 | . | harvested | xyz | 1111 | 1121 | . |
unit 1 | year 1 | . | production | xyz | 1112 | 1122 | . |
unit 1 | year 2 | . | harvested | xyz | 1211 | 1221 | . |
unit 1 | year 2 | . | production | xyz | 1212 | 1222 | . |
. | . | . | . | . | . | . | . |
unit 2 | year 1 | . | harvested | xyz | 2111 | 2121 | . |
unit 2 | year 1 | . | production | xyz | 2112 | 2122 | . |
unit 2 | year 2 | . | harvested | xyz | 2211 | 2221 | . |
unit 2 | year 2 | . | production | xyz | 2212 | 2222 | . |
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.
<- setIDVar(name = "territories", columns = 1) schema
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()
.
validateSchema(schema = schema, input = input) %>%
getIDVars(input = input)
#> [[1]]
#> [[1]]$territories
#> # A tibble: 9 × 1
#> X1
#> <chr>
#> 1 territories
#> 2 unit 1
#> 3 unit 1
#> 4 unit 1
#> 5 unit 1
#> 6 unit 2
#> 7 unit 2
#> 8 unit 2
#> 9 unit 2
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.
<- 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
validateSchema(schema = schema, input = input) %>%
getIDVars(input = input)
#> [[1]]
#> [[1]]$territories
#> # A tibble: 8 × 1
#> X1
#> <chr>
#> 1 unit 1
#> 2 unit 1
#> 3 unit 1
#> 4 unit 1
#> 5 unit 2
#> 6 unit 2
#> 7 unit 2
#> 8 unit 2
#>
#> [[1]]$year
#> # A tibble: 8 × 1
#> X2
#> <chr>
#> 1 year 1
#> 2 year 1
#> 3 year 2
#> 4 year 2
#> 5 year 1
#> 6 year 1
#> 7 year 2
#> 8 year 2
#>
#> [[1]]$commodities
#> # A tibble: 1 × 2
#> X6 X7
#> <chr> <chr>
#> 1 soybean maize
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
).
<- 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.
validateSchema(schema = schema, input = input) %>%
getObsVars(input = input)
#> [[1]]
#> [[1]]$listed
#> # A tibble: 8 × 3
#> key X6 X7
#> <chr> <chr> <chr>
#> 1 harvested 1111 1121
#> 2 production 1112 1122
#> 3 harvested 1211 1221
#> 4 production 1212 1222
#> 5 harvested 2111 2121
#> 6 production 2112 2122
#> 7 harvested 2211 2221
#> 8 production 2212 2222
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 finalised (non-validated) schema
and the input
table.
# has a pretty print function
schema #> 1 cluster (whole spreadsheet)
#>
#> variable type row col key value
#> ------------- ---------- ----- ----- ----- ------------
#> territories id 1
#> year id 2
#> commodities id 1 6:7
#> harvested observed 6:7 4 harvested
#> production observed 6:7 4 production
reorganise(input = input, schema = schema)
#> # A tibble: 8 × 5
#> territories year commodities harvested production
#> <chr> <chr> <chr> <dbl> <dbl>
#> 1 unit 1 year 1 maize 1121 1122
#> 2 unit 1 year 1 soybean 1111 1112
#> 3 unit 1 year 2 maize 1221 1222
#> 4 unit 1 year 2 soybean 1211 1212
#> 5 unit 2 year 1 maize 2121 2122
#> 6 unit 2 year 1 soybean 2111 2112
#> 7 unit 2 year 2 maize 2221 2222
#> 8 unit 2 year 2 soybean 2211 2212
In this section we look at some examples of disorganised data, discuss the dimension along which they are disorganised and show which schema description should be used to reorganise 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 formating that could be found in any table and should not disturb the process of reorganising.
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.
In case the observed variables are arranged into individual columns (Tab. 3), we have tidy data (Wickham 2014), 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.
kable(tabs2shift$tidy)
<-
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)
#> # A tibble: 8 × 5
#> territories year commodities harvested production
#> <chr> <chr> <chr> <dbl> <dbl>
#> 1 unit 1 year 1 maize 1121 112.
#> 2 unit 1 year 1 soybean 1111 111.
#> 3 unit 1 year 2 maize 1221 122.
#> 4 unit 1 year 2 soybean 1211 121.
#> 5 unit 2 year 1 maize 2121 212.
#> 6 unit 2 year 1 soybean 2111 211.
#> 7 unit 2 year 2 maize 2221 222.
#> 8 unit 2 year 2 soybean 2211 221.
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) and in the latter case, columns need to be split via regular expressions (Tab. 5).
For example, .+?(?=_)
gives everything up until the first _
and (?<=\\_).*
everything after the _
.
kable(input <- tabs2shift$split_column)
<-
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)
kable(tabs2shift$merged_column)
<-
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)
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.
kable(input <- tabs2shift$implicit_variable)
<- setCluster(id = "territories",
schema 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)
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). 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.
kable(input <- tabs2shift$one_wide_id)