Publications by Gianni

HTML

23.09.2023

...

3 sym

Nooa events analysis

21.03.2023

NOAA ANALYSIS We want to address the question about what are the most dangerous events in the USA according to the NOAA database that record all these phenomena from 1950 to 2011 storm_df <- read.csv("repdata_data_StormData.csv") let’s analyse the database to calculate which event caused more damage to people summing all the observations during a...

3975 sym R (6089 sym/34 pcs) 4 img

Spreco alimentare in Europa e Italia (dati FAO)

05.01.2023

Caricamento pacchetti: library(dplyr) library(ggplot2) library(knitr) Parte 1 : Dati Il dataset della FAO scaricabile da qui : https://www.fao.org/platform-food-loss-waste/flw-data/en/ contiene dati su studi e analisi scientifiche inerenti lo spreco alimentare nel mondo dal 2000 al 2022 . In particolare è costituito da 29.287 obs. di 18 variabi...

2214 sym R (2495 sym/10 pcs) 1 img 1 tbl

Education and poverty in South Africa

19.05.2022

Load packages library(dplyr) library(ggplot2) library(corrplot) library(statsr) Load Data Data from : https://zindi.africa/competitions/be-a-trailblazer dataset <- read.csv("Train.csv") Part 1: Research question We want to highlight that in South Africa the share of individuals attending school and the share of low-income women-led households i...

3510 sym R (13184 sym/49 pcs) 16 img

Statistics of tourist spending in Tanzania

13.05.2022

Load packages library(dplyr) library(ggplot2) library(GGally) Load Data dataset <- read.csv("Train.csv", stringsAsFactors = TRUE) dataset$total_people <- dataset$total_male+dataset$total_female Part 1: Research question We want to highlight which aspects of tourism in Tanzania are more profitable and in which it is worthwhile to invest Part 2:...

2264 sym R (13057 sym/30 pcs) 4 img

Bank account in Rwanda, Tanzania, Nigeria, Uganda

10.05.2022

Load packages library(dplyr) library(ggplot2) library(statsr) Load Data dataset <- read.csv("Train.csv", stringsAsFactors = TRUE) Part 1: Research question Analyzing the sample of people interviewed from Rwanda, Tanzania, Nigeria, Uganda we want to highlight that people with a “Tertiary education” or “Vocational / Specialized training” ...

758 sym R (8194 sym/21 pcs) 10 img

More or less functional wells in Tanzania

09.05.2022

Load packages library(dplyr) library(ggplot2) Part 1 : Data Data from : https://www.drivendata.org/competitions/7/pump-it-up-data-mining-the-water-table/ Load data train_set <- read.csv("train_values.csv", stringsAsFactors = TRUE) train_set <- train_set[,-20] label <- read.csv("train_label.csv", stringsAsFactors = TRUE) train_set <- cbind(train...

1328 sym R (21756 sym/21 pcs) 6 img

Employment projections from 2020 to 2030 in the US

25.05.2022

Load packages library(dplyr) library(ggplot2) library(readxl) Load data Data from : https://www.bls.gov/emp/ind-occ-matrix/occupation.xlsx occupation <- read_excel("occupation new.xlsx", sheet = "Table 1.2") colnames(occupation) <- occupation[1,] occupation <- occupation[-1,] occupation$`Occupation type` <- as.factor(occupation$`Occupation type`...

138 sym R (3282 sym/8 pcs) 2 img