Skip to contents

A dataset containing individual-level candidacy records from municipal elections in the municipality of Hradce (district Ceske Budejovice, Czech Republic).

Usage

Hradce_CB_cz

Format

An object of class data.frame with 103 rows and 14 columns.

Source

The dataset was compiled primarily from official election results published by the Czech Statistical Office. Additional contextual or verification information (such as post-election roles) was obtained from publicly available municipal records.

Details

Dataset overview:
Municipality:Hradce
District:Ceske Budejovice
Country:Czech Republic
Number of elections:10
Elections covered:1994, 1998, 2002, 2006, 2010, 2014, 2016, 2017, 2018, 2022
Number of candidacies (rows):103
Note:Municipality website

Description of variables

VariableDescription
electionsElection identifiers (numeric)
candidateCandidate's full name (character)
list_nameName of the candidate list (character)
list_posCandidate's position on the list (numeric)
pref_votesNumber of preferential votes (numeric)
electedLogical; TRUE if candidate was elected
nom_partyNominating party (character)
pol_affilPolitical affiliation (character)
mayorTRUE if elected mayor
dep_mayorTRUE if elected deputy mayor
boardTRUE if member of the executive board
gov_supportTRUE if supported the local government
elig_votersNumber of eligible voters (numeric)
ballots_castNumber of ballots cast (numeric)

Each record describes one candidate's run for office, including their candidate list affiliation, position on the list, nominating party, political affiliation, number of preferential votes, and whether they were elected or held specific positions (mayor, deputy mayor, member of the executive body).

The dataset also includes contextual election-level information, such as the number of eligible voters and ballots cast, which can be used to calculate voter turnout and related indicators. These variables appear only once per election and constituency (they may be stored in a single candidate row for that election/constituency)

References

  • Krpalkova, S. (2024). Permanentni opakovani komunalnich voleb: zablokovane obce? (Permanent repetition of municipal election: blocked municipalities?). Dissertation thesis. Charles University. [Full text]

Examples

# Basic inspection
str(Hradce_CB_cz)
#> 'data.frame':	103 obs. of  14 variables:
#>  $ elections   : int  1994 1994 1994 1994 1994 1994 1994 1994 1994 1998 ...
#>  $ candidate   : chr  "Bártová Ludmila" "Andrle František" "Dána Jiří" "Šafránek František" ...
#>  $ list_name   : chr  "Ludmila Bártová, NK" "František Andrle, NK" "Jiří Dána, NK" "František Šafránek, NK" ...
#>  $ list_pos    : int  1 1 1 1 1 1 1 1 1 1 ...
#>  $ pref_votes  : int  14 18 15 16 5 18 4 12 16 13 ...
#>  $ elected     : int  0 1 1 1 0 1 0 0 1 1 ...
#>  $ nom_party   : chr  "NK" "NK" "NK" "NK" ...
#>  $ pol_affil   : chr  "BEZPP" "BEZPP" "BEZPP" "BEZPP" ...
#>  $ mayor       : int  NA NA NA NA NA NA NA NA NA NA ...
#>  $ dep_mayor   : int  NA NA NA NA NA NA NA NA NA NA ...
#>  $ board       : int  NA NA NA NA NA NA NA NA NA NA ...
#>  $ gov_support : int  NA NA NA NA NA NA NA NA NA NA ...
#>  $ elig_voters : int  31 NA NA NA NA NA NA NA NA 29 ...
#>  $ ballots_cast: int  25 NA NA NA NA NA NA NA NA 23 ...

# Example of a basic continuity diagram (unformatted version)
plot_continuity(Hradce_CB_cz, elections = "2006-")