Publications by Patrick Ford

Global CO₂ Emissions: Emissions (GtCO₂) vs Year:1750-2023

25.01.2024

# Load the necessary library library(ggplot2) # Load data from the CSV file GlobalCO2Emissions <- read.csv("GlobalCO2Emissions.csv") # Visualise the data using ggplot2 ggplot(GlobalCO2Emissions, aes(x = Year, y = `Emissions`)) + geom_point(aes(fill = factor(Year)), size = 6, shape = 21, color = "#000000") + geom_text(aes(label = sprintf("%.2...

5 sym R (883 sym/1 pcs) 1 img

Global CO₂ Emissions: Emissions (GtCO₂) vs Year 1970-2023

25.01.2024

# Load the necessary library library(ggplot2) # Load data from the CSV file GlobalCO2Emissions <- read.csv("GlobalCO2Emissions.csv") # Select the last six decades lastseven <- tail(GlobalCO2Emissions, 7) # Visualise the data using ggplot2 as a modified pie chart ggplot(lastseven, aes(x = "", y = `Emissions`, fill = factor(Year))) + geom_bar(st...

5 sym R (1119 sym/1 pcs) 1 img

Water Quality

14.01.2024

pacman::p_load(pacman, tidyverse, ggplot2, gridExtra) pollution_df = read_csv("Cities1.csv") ## Rows: 3963 Columns: 5 ## ── Column specification ──────────────────────────────────────────────────────── ## Delimiter: "," ## chr (3): C...

11 sym Python (2494 sym/5 pcs) 3 img

Water and Air Quality.

14.01.2024

pacman::p_load(pacman,tidyverse,ggplot2,gridExtra) pollution_pf = read_csv("Cities1.csv") ## Rows: 3963 Columns: 5 ## ── Column specification ──────────────────────────────────────────────────────── ## Delimiter: "," ## chr (3): City...

7 sym Python (4290 sym/3 pcs) 1 img

Fine Particulate Matter PM(2.5).

14.01.2024

pacman::p_load(pacman, tidyverse, ggplot2, gridExtra) WP = read_csv("WHO_PM.csv") ## Rows: 9450 Columns: 34 ## ── Column specification ──────────────────────────────────────────────────────── ## Delimiter: "," ## chr (14): Indicator...

11 sym Python (2763 sym/5 pcs) 3 img

Particulate Matter in Water.

13.01.2024

pacman::p_load(pacman, tidyverse, ggplot2, gridExtra) # Extracting Water Pollution information WP = read_csv("WHO_PM.csv") ## Rows: 9450 Columns: 34 ## ── Column specification ──────────────────────────────────────────────────────── ...

11 sym Python (2861 sym/5 pcs) 3 img

Fine Particulate Matter PM(2.5).

13.01.2024

pacman::p_load(pacman, tidyverse, ggplot2, gridExtra) WP = read_csv("WHO_PM.csv") ## Rows: 9450 Columns: 34 ## ── Column specification ──────────────────────────────────────────────────────── ## Delimiter: "," ## chr (14): Indicator...

11 sym Python (2765 sym/5 pcs) 3 img

Water Quality

13.01.2024

pacman::p_load(pacman, tidyverse, ggplot2, gridExtra) pollution_df = read_csv("Cities1.csv") ## Rows: 3963 Columns: 5 ## ── Column specification ──────────────────────────────────────────────────────── ## Delimiter: "," ## chr (3): C...

11 sym Python (2581 sym/5 pcs) 3 img

Air & Water

13.01.2024

The 10 Best & Worst Countries: Air Quality and Water Pollution - 2020 Patrick Ford Row Chart 1 Chart 2 Row Chart 3 Chart 4...

190 sym 8 img

Water Quality

13.01.2024

The 42 Best & Worst Countries: Water Pollution - 2020 Patrick Ford Column Chart A Column Chart B...

152 sym 4 img