Nothing
#' @title show_province_and_party
#' @description A function that displays the election results of a specified political party in a given province, both as percentages and as absolute figures, in the form of a graph.
#' @return A visual that shows the election results of a specified political party in a given province
#' @importFrom dplyr select
#' @importFrom dplyr filter
#' @importFrom ggplot2 ggplot
#' @importFrom ggplot2 aes
#' @importFrom ggplot2 geom_bar
#' @importFrom ggplot2 coord_flip
#' @importFrom ggplot2 labs
#' @importFrom ggplot2 geom_text
#' @import stringr
#' @import dplyr
#' @import ggplot2
#' @param province The name of the province that users want to look for
#' @param party The name of the political party that users want to look for
#' @param percentage It is a boolean argument which allows you to print the plot with the percentage or not
#' @examples
#' \donttest{
#' show_province_and_party()
#'}
#' @export
#'
show_province_and_party<-function(province="Ankara",party="CHP",percentage=FALSE){
genel_secim_1995_il<-turkeyelections::genel_secim_1995_il
genel_secim_1999_il<-turkeyelections::genel_secim_1999_il
genel_secim_2002_il<-turkeyelections::genel_secim_2002_il
genel_secim_2007_il<-turkeyelections::genel_secim_2007_il
genel_secim_2011_il<-turkeyelections::genel_secim_2011_il
genel_secim_haziran_2015_il<-turkeyelections::genel_secim_haziran_2015_il
genel_secim_kasim_2015_il<-turkeyelections::genel_secim_kasim_2015_il
genel_secim_2018_il<-turkeyelections::genel_secim_2018_il
genel_secim_2023_il<-turkeyelections::genel_secim_2023_il
lst<-list(genel_secim_1995_il,genel_secim_1999_il,genel_secim_2002_il,
genel_secim_2007_il,genel_secim_2011_il,genel_secim_haziran_2015_il,genel_secim_kasim_2015_il,genel_secim_2018_il,genel_secim_2023_il
)
names(lst)<-c("genel_secim_1995","genel_secim_1999","genel_secim_2002",
"genel_secim_2007","genel_secim_2011","genel_secim_haziran_2015",
"genel_secim_kasim_2015","genel_secim_2018","genel_secim_2023")
index<-c()
for(i in 1:length(lst)){
if(sum(grepl(paste0(party,"_%"),colnames(lst[[i]])))==1){
index[i]<-TRUE
}else{
index[i]<-FALSE
}
}
sub_lst<-lst[index]
dd<-data.frame()
for(i in 1:length(sub_lst)){
dd<-rbind(dd,sub_lst[[i]]|>filter(Il == stringr::str_to_sentence(province) |
Il ==paste(stringr::str_to_sentence(province),"(toplam)") |
Il== paste0(stringr::str_to_upper(province,locale = "tur"),"-1")|
Il== stringr::str_to_upper(province,locale = "tur"))|>dplyr::select(paste0(party,"_%")))
}
dd$secim<-names(sub_lst)
dd$secim<-factor(dd$secim,levels = dd$secim)
colnames(dd)<-c("oy","secim")
if(percentage ==FALSE){
p<-ggplot2::ggplot(dd,ggplot2::aes(x=secim,y=oy))+
ggplot2::geom_bar(stat="identity")+
ggplot2::coord_flip()+
ggplot2::labs(title=paste(province,"/",party))
return(p)
}else{
p<-ggplot2::ggplot(dd,ggplot2::aes(x=secim,y=oy))+
ggplot2::geom_bar(stat="identity")+
ggplot2::coord_flip()+
ggplot2::labs(title=paste(province,"/",party))+
ggplot2::geom_text(aes(label=paste("%",oy)))
return(p)
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.