All Projects → sophieehill → My Little Crony

sophieehill / My Little Crony

Licence: mit
A visualization of the connections between Tory politicians and companies being awarded government contracts during the pandemic.

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to My Little Crony

Votemapswitzerland
A Swiss version of the famous visualization «Land doesn't vote, people do.»
Stars: ✭ 150 (+27.12%)
Mutual labels:  politics, dataviz
Shinyapps links
A collection of Shiny applications (links shared on Twitter)
Stars: ✭ 109 (-7.63%)
Mutual labels:  shiny
Lietuvos Respublikos Konstitucija
Lietuvos Respublikos Konstitucija ir ją pagrindžiantys dokumentai. Su visa keitimų istorija.
Stars: ✭ 87 (-26.27%)
Mutual labels:  politics
Sigma.js
A JavaScript library aimed at visualizing graphs of thousands of nodes and edges
Stars: ✭ 9,552 (+7994.92%)
Mutual labels:  dataviz
Holyfucktheelectionistomorrow
holy fuck
Stars: ✭ 92 (-22.03%)
Mutual labels:  politics
Shiny.i18n
Shiny applications internationalisation made easy
Stars: ✭ 104 (-11.86%)
Mutual labels:  shiny
Shiny Wordcloud
Example dockerized Shiny App
Stars: ✭ 86 (-27.12%)
Mutual labels:  shiny
Echarts2shiny
To insert interactive charts from ECharts into R Shiny applications (在R Shiny app中插入ECharts可交互图形)
Stars: ✭ 116 (-1.69%)
Mutual labels:  shiny
Anicon
Animated icons for R markdown and Shiny apps
Stars: ✭ 109 (-7.63%)
Mutual labels:  shiny
Argondash
argon dashboard template
Stars: ✭ 99 (-16.1%)
Mutual labels:  shiny
Shinycustomloader
Add a custom loader for R shiny
Stars: ✭ 97 (-17.8%)
Mutual labels:  shiny
Shinybusy
Minimal busy indicator for Shiny apps
Stars: ✭ 92 (-22.03%)
Mutual labels:  shiny
Excelr
An Interface to 'jExcel.js' Library
Stars: ✭ 106 (-10.17%)
Mutual labels:  shiny
Earth atlas of space
Code and instructions for making an animated map of Earth
Stars: ✭ 89 (-24.58%)
Mutual labels:  dataviz
Manipulatewidget
Add More Interactivity to htmlwidgets
Stars: ✭ 110 (-6.78%)
Mutual labels:  shiny
Rustplotlib
A pure Rust visualization library inspired by D3.js
Stars: ✭ 87 (-26.27%)
Mutual labels:  dataviz
Kyrix
Interactive details-on-demand data visualizations at scale
Stars: ✭ 97 (-17.8%)
Mutual labels:  dataviz
Auth0
Authentication in shinyapps using Auth0 service
Stars: ✭ 100 (-15.25%)
Mutual labels:  shiny
Nytcrossword
An exploration of New York Times crossword answers from 1994-2017, i.e. the Will Shortz era.
Stars: ✭ 117 (-0.85%)
Mutual labels:  dataviz
Pokr.kr
Pokr [ˈpō-kər] - Politics in Korea (Out of service since Dec 2018)
Stars: ✭ 111 (-5.93%)
Mutual labels:  politics

My Little Crony

This repo contains the data and code for my Shiny App, My Little Crony, visualizing links between Tory politicians and the private companies being awarded government contracts during the pandemic (even without a tender process).

Please feel free to contact me (sophie DOT eva DOT hill AT gmail DOT com) with any corrections, comments, or suggestions!

Data

The raw data is contained in two files: people.csv identifies individuals and organizations (i.e. the "nodes" of the network) and connections.csv identifies the links between individuals and organizations (i.e. the "edges" of the network).

Code

The script code.R adds some attributes to the data to aid visualization, like specifying the icon type, colour, size. The data files are then resaved as people.RData and connections.RData.

Shiny app

The file app.R contains the Shiny app. It can be run locally on your machine or you can see the final product here on the web!

Newbie

Install R from https://cran.r-project.org/

Update your ~/.Rprofile with:

local({r <- getOption("repos")
   r["CRAN"] <- "https://cloud.r-project.org"
   options(repos=r)
)

In the my-little-crony directory run (first time):

$ R 
> install.packages("visNetwork")
> install.packages("tidyverse")
> install.packages("metathis")
> install.packages("shiny")

Run the app:

R -e "shiny::runApp('.')"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].