logo

(PDF) Analysis of Research in Healthcare Data Analytics

17 Pages4129 Words83 Views
   

Added on  2021-05-30

(PDF) Analysis of Research in Healthcare Data Analytics

   Added on 2021-05-30

ShareRelated Documents
Data analysis report of the health and population statistics of East Asian and Pacific countriesName of the Student
(PDF) Analysis of Research in Healthcare Data Analytics_1
Table of Contents1 Introduction..................................................................................................................................11.1 Authorisation and Purpose....................................................................................................1Limitations...................................................................................................................................1Scope............................................................................................................................................1Methodology...............................................................................................................................12 Data Setup....................................................................................................................................13 Exploratory Data Analysis.............................................................................................................23.1 One Variable Analysis................................................................................................................23.1.1 One Variable Analysis – 1.......................................................................................................23.1.2 One Variable Analysis – 2.......................................................................................................33.1.3 One Variable Analysis – 3.......................................................................................................53.2 Two-variable analysis.................................................................................................................63.2.1 Two-variable analysis 1...........................................................................................................63.2.2 Two-variable analysis 2...........................................................................................................74 Advanced analysis.........................................................................................................................84.1 Clustering...................................................................................................................................84.1.1 Brief explanation of k-means and clustering..........................................................................84.1.2 Clustering Analysis..................................................................................................................94.2 Linear regression......................................................................................................................104.2.1 Brief definition of linear regression......................................................................................104.2.2 Linear Regression 1...............................................................................................................104.2.3 Linear Regression 2...............................................................................................................125 Conclusion...................................................................................................................................136 Reflection....................................................................................................................................14Reference.......................................................................................................................................15Page | ii
(PDF) Analysis of Research in Healthcare Data Analytics_2
1 Introduction 1.1 Authorisation and PurposeHerein we investigate the health development of East Asia and Pacific Region during the periodof 2001 to 2015. The data for the investigation has been taken from world bank. The researchteam is particularly interested in the relation of crude birth and death rate to the healthexpenditure of the region. Moreover, in this research we intend to study how crude birth anddeaths rate have varied across countries for last 15 years. In addition, the research intends tostudy the relation between growth in population of the region (the difference between crudedeath rate and crude birth rate) and health expenditure. Further, the relation betweenimmunization rate and crude birth rate is studied. The outcomes of the analysis have importance to government and planners. The analysis can beutilised for resource mobilisation to improve the health of the country. LimitationsThe analysis is limited to the region of East Asia and Pacific only. Scope For analysing the health of the region the present study is segregated into four groups. Initiallythe researcher evaluates the attributes using a one variable study. Box-plots and histograms areused to undertake a one-attribute study. In the second part two of variables are studies. inorder to undertake the two variable study box-plots were found to be best suited. In the nextsection the researcher has evaluated patterns in the relation between crude birth and deathrate. The countries of the region having similar death and birth rates have been groupedtogether. Finally, in the last section, growth in population of the region is related to healthexpenditure and birth rate to immunization rate. MethodologyQuantitative data got from world bank is used for the present analysis. The data pertains to thetime period of 2001 to 2015 and East Asia and Pacific Region.2 Data SetupIn order to undertake the analysis, the data file should be loaded into the R program. Thus thefirst line of the code requests the user to load the required data file. During the process ofrunning the first line of code a window pops up and the data file to be analysed is requested.The pre-processing of the data file also takes place when the data file is loaded. All missingvalues are tagged and the first row is taken as the header row. In the second stage the requiredlibrary files are loaded. In order to undertake the analysis certain library files are required. Thelibrary files are loaded in the second stage.
(PDF) Analysis of Research in Healthcare Data Analytics_3
3 Exploratory Data Analysis3.1 One Variable Analysis3.1.1 One Variable Analysis – 1The crude death rate of the region per 1000 people in 2014 is studied as a one-variable analysis.In 2014 the average death rate was 6.37 with a standard deviation of 1.44 for every 1000people. The minimum and maximum death rate was 2.99 and 10 respectively in the region. Themedian death rate in 2014 was 6.16 for every 1000 people. From the analysis it can be seenthat the minimum and maximum death rates of the region are outliers. Page | 2Data <- read.csv(file.choose(), header = TRUE, sep = "," , na.strings = "..")# Loading required library fileslibrary(data.table)library(reshape2) library(psych) library(factoextra) library(ggplot2)library(lattice)library(dplyr)fill <- "#4271AE"line <- "#1F3552"Analysis11 <- ggplot(Data1, aes(x = factor(0), y = SP.DYN.CDRT.IN)) + geom_boxplot(fill =fill, colour = line, alpha = 0.7) Analysis11 <- Analysis11 + scale_x_discrete(name = "Crude Death Rate (per 1000 people)")+ scale_y_continuous(name = "Count")Analysis11 <- Analysis11 + ggtitle("Distribution of Crude death Rate in the Region in 2014")+ theme_bw()describe(Data1$SP.DYN.CDRT.IN)Analysis11
(PDF) Analysis of Research in Healthcare Data Analytics_4

End of preview

Want to access all the pages? Upload your documents or become a member.

Related Documents
Report on Demographic Analysis of East Asia and Pacific Countries
|19
|4001
|64

Data Analysis Report of Health and Population Statistics of East Asian and Pacific Countries
|17
|3130
|360

Data Analysis Report of Health and Population Statistics of East Asian and Pacific Countries
|20
|3160
|304

Data Analysis Report of Health and Population Statistics of East Asian and Pacific Countries
|15
|2593
|166

Analysis of East Asia and Pacific Health and Population Data
|22
|3497
|268

World Health and Population Analysis
|11
|2363
|271