Publications by Lumumba W.Victor

Evaluating Job Categories and Education Qualifications

04.03.2023

Setting up Rstudio Setting up RMarkdown when opening it enables you to create dynamic, reproducible, and visually appealing reports, presentations, and documents, that can help you communicate your data analysis and research findings more effectively. knitr::opts_chunk$set(echo = TRUE, warning=FALSE,comment = NA, message=FALSE, ...

1094 sym R (21387 sym/37 pcs) 10 img 7 tbl

Exploratory Data Analysis

04.03.2023

Introduction Data analysis is an art. This sample aims to illustrate how to use R to perform exploratory analysis the given problems. Only brief discussion will be included as an illustration. Descriptive statistics First, we have to load the libraries. library(dplyr) library(ggplot2) library(psych) library(corrplot) library(VIM) library(gr...

5222 sym R (26115 sym/64 pcs) 20 img 6 tbl

Publishable Tables (T-test, ANOVA, and Regression)

03.03.2023

knitr::opts_chunk$set(echo = TRUE, warning=FALSE,comment = NA, message=FALSE, fig.height=4, fig.width=6) Perform the following Use the data on price pass through in meat to estimate a regression of price change at retail on price change at the farm gate. Report a regression table from R. Interpret the coefficient on price ...

1453 sym R (5865 sym/35 pcs) 7 tbl

INVESTIGATING FACTORS RESPONSIBLE FOR CREDIT UPTAKE (Exploratory Data Analysis)

03.03.2023

Set up Rstudio knitr::opts_chunk$set(echo = TRUE, warning=FALSE,comment = NA, message=FALSE, fig.height=4, fig.width=6) Data Importation german.marketing.data <- read.csv("C:\\Users\\user\\Downloads\\german_credit__data.csv") Load the following library library(plyr) count(german.marketing.data) Delete the missing observat...

1283 sym R (8656 sym/46 pcs) 9 img 13 tbl

Hypothesis Testing: Proportion

02.03.2023

The lab must be uploaded on BrightSpace in pdf format The work must contain R codes, R outputs and interpretations Deadline for submission of work: Tuesday, February 28 at 11:59 p.m. Goals : Descriptive analysis of a categorical variable Frequency table and diagrams Confidence interval for a response variable Hypothesis test on the proportion π...

18011 sym R (11779 sym/139 pcs) 3 img 5 tbl

FUNDAMENTAL INTRODUCTORY TO DATA ANALYSIS IN RSTUDIO

05.12.2022

INTRODUCTION In terms of selecting a statistical test, the most important question is “what is the main study hypothesis?” In some cases there is no hypothesis; the investigator just wants to “see what is there”. For example, in a prevalence study there is no hypothesis to test, and the size of the study is determined by how accuratel...

127343 sym R (166324 sym/930 pcs) 141 img 4 tbl

Data visualization (Scatter plot) using ggplot2

23.02.2022

SETTING UP MY ENVIRONMENT FOR DATA VISUALIZATION Here we activate all the packages necessary for data visualization in Rstudion using ggplot2 library(palmerpenguins) library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.1 -- ## v ggplot2 3.3.5 v purrr 0.3.4 ## v tibble 3.1.6 v dplyr 1.0.7...

279 sym R (1596 sym/17 pcs) 3 img

DATA VISUALIZATION

23.02.2022

SETTING UP MY ENVIRONMENT FOR DATA VISUALIZATION Here we activate all the packages necessary for data visualization in Rstudion using ggplot2 library(palmerpenguins) library(tidyverse) ## -- Attaching packages --------------------------------------- tidyverse 1.3.1 -- ## v ggplot2 3.3.5 v purrr 0.3.4 ## v tibble 3.1.6 v dplyr 1.0.7...

534 sym R (3583 sym/39 pcs) 11 img

GENERAL STATISTICS

26.05.2022

#Data Importation data<-read.csv("C:\\Users\\LUMUMBA\\Downloads\\training model.csv") head(data,10) ## year CPI Exch.Rate Lend.Int.Rates ## 1 1987 7.872727 16.45499 14.00000 ## 2 1988 8.848083 17.74710 15.00000 ## 3 1989 10.035029 20.57247 17.25000 ## 4 1990 11.602322 22.91477 18.75000 ## 5 1991 1...

1931 sym R (14896 sym/135 pcs) 36 img

The Effect of GDP Per Capita and Population on Life Expectancy

10.04.2022

Introduction According to the world health organization, global life expectancy between 2000 and 2019 increased from 66 years to 72 years. An increase in life expectancy by 6 years between 2000 and 2019 is an indication that life expectancy improved by 9.677%. An increase in global life expectancy by 9.677% is a significant increase in life expec...

19794 sym R (5999 sym/42 pcs) 10 img