2DegreesInvesting / tiltToyData

Toy datasets for tilt
https://2degreesinvesting.github.io/tiltToyData/
GNU General Public License v3.0
0 stars 0 forks source link

`europages_companies` gains the columns `min_headcount` and `max_headcount` #50

Closed maurolepore closed 5 months ago

maurolepore commented 5 months ago

This PR adds the columns min_headcount and max_headcount to europages_companies (v0.0.0.9203).

Note this CI check confirms the new columns don't break tiltIndicatorAfter.

reprex

devtools::load_all()
#> ℹ Loading tiltToyData

library(readr, warn.conflicts = FALSE)
library(dplyr, warn.conflicts = FALSE)

toy_europages_companies() |> 
  read_csv(show_col_types = FALSE) |> 
  relocate(matches("headcount"))
#> # A tibble: 76 × 10
#>    min_headcount max_headcount companies_id    company_name country company_city
#>            <dbl>         <dbl> <chr>           <chr>        <chr>   <chr>       
#>  1             1            10 warriorlike_gr… warriorlike… germany grünwald    
#>  2             1            10 leathery_acorn… leathery_ac… germany düsseldorf  
#>  3             1            10 automotive_ala… automotive_… germany trier       
#>  4             1            10 weatherproof_r… weatherproo… germany münchen     
#>  5             1            10 angular_oregon… angular_ore… germany veitsbronn  
#>  6             1            10 bereft_anchovy  bereft_anch… germany langenselbo…
#>  7             1            10 asteria_megalo… asteria_meg… austria wilhelmsburg
#>  8             1            10 reversible_aff… reversible_… germany quickborn   
#>  9             1            10 exportable_wid… exportable_… germany vlotho      
#> 10             1            10 comely_manta    comely_manta germany henstedt-ul…
#> # ℹ 66 more rows
#> # ℹ 4 more variables: postcode <chr>, address <chr>, main_activity <chr>,
#> #   clustered <chr>


TODO

EXCEPTIONS