-
Board Games
tidytuesday"s Board Gamess from 25th January 2022, https://github.com/rfordatascience/tidytuesday/tree/master/data/2022/2022-01-25. Data sourced from Kagle. Mean Rating Over the Years ## # A tibble: 21,631 × 32 ## num.x id primary descr…¹ yearp…² minpl…³ maxpl…⁴ playi…⁵ minpl…⁶ maxpl…⁷ ## <dbl> <dbl> <chr> <...
-
Reading a Git log in R
Using R to read a git log file
Occasionally, for reasons that noone really knows, it is necessary to visualise data from repository logs. This could include understanding who the frequent authors are, or the most often changed code file, or which files are changed together, or anything else a manager could dream up. Retrieve Git Data Using git log, we can retrieve various ...
-
Netflix Shows
tidytuesday"s Netflix Shows from 20th April 2021, https://github.com/rfordatascience/tidytuesday/blob/eedfa9fe5c39d973502f00b2574ba14bff7ed82b/data/2021/2021-04-20. Data sourced from Kagle. Monthly title releases The number of titles released onto Netflix each month. The launch of Disney+ apears to have provided a peak for new films on Netfl...
-
Lego Sets
tidytuesday"s Lego Sets from 6th September 2022, https://github.com/rfordatascience/tidytuesday/tree/master/data/2022/2022-09-06. Number of Parts in Sets Are sets getting bigger over time? Common Themes Which are the most common themes? How to themes change over time? See image on github for a larger plot.
-
Chocolate Ratings
Tidy Tuesday from 2022-01-18, chocolate ratings.
tidytuesday's Chocolate Ratings from 18th January 2022, https://github.com/rfordatascience/tidytuesday/tree/master/data/2022/2022-01-18. Using the data provided, we can investigate a few attributes of chocolate, including its rating vs characteristics; source location and manufacturer. First, we import the data and visualise the type of data t...
-
Analysing Historical Weather
Understanding a little historical weather
Collecting Data To start with, we can use the MetOffice’s Historic station data. There aren’t too many stations offering data, so Eastbourne is closest to me (known as the “Sunshine Coast”, so I expect data to be a bit different to what I perceive north of the downs!). The data is a text file, located here, https://www.metoffice.gov.uk/pub/da...
-
Covid-19 Heatmaps
Heatmaps of Covid-19 cases in the UK; using data from public government data
Let’s Plot Covid-19 in the UK… Source Covid-19 Covid data is from the UK Government website, using the following URL: https://api.coronavirus.data.gov.uk/v2/data?areaType=ltla&metric=newDeaths28DaysByDeathDate&metric=newCasesBySpecimenDate&format=csv Covid-19 data is CONFIRMED cases or deaths only. A case is registered on th...
-
World GNI
Some very high level looking at a selection of countries's GNI since 1971, with a global map plot.
Global GNI GNI (formerly GNP) Is the sum of value added by all resident producers plus any product taxes (less subsidies) not included in the valuation of output plus net receipts of primary income (compensation of employees and property income) from abroad. All data are in current U.S. dollars. Source All data is from the World Bank and us...
-
Covid 19 Charts
A first play with R, charts and UK government Covid-19 data.
Playing with UK Covid data The source of all data in this script is the UK Government website, https://coronavirus.data.gov.uk/. Now we can get a summary of the cases data: summary(cases) ## areaCode areaName areaType date ## Length:180605 Length:180605 Length:180605 Min. :2020...
-
Car Engine Graph
This is a graph to show cars and their stuff
Cars summary(cars) ## speed dist ## Min. : 4.0 Min. : 2.00 ## 1st Qu.:12.0 1st Qu.: 26.00 ## Median :15.0 Median : 36.00 ## Mean :15.4 Mean : 42.98 ## 3rd Qu.:19.0 3rd Qu.: 56.00 ## Max. :25.0 Max. :120.00 Draw a ggplot for efficiency of car engines ## `geom_smooth()` using formu...
-
My first Rmarkdown
Just trying to get #1 to play nice
My first Rmd execution Hello, World :D x <- c(1, 2, 3, 4, 5, 6) mean(x) ## [1] 3.5 print("Hello, World!") ## [1] "Hello, World!" A sin chart ‘coz, why not plot(1:100, sin(1:100), type = "b")