Data Visualisation: Confirmed New Zealand COVID-19 Cases

Data Visualisation: Confirmed New Zealand COVID-19 Cases

The objective is to provide insights based on the information from the New Zealand (NZ) Ministry of Health. Here is the link for obtaining the COVID-19 cases. Will look at the exploring the confirmed cases per District Health Board - commonly known as DHB, gender and age group. With time I might automate the data visualisation - the tricky bit is that the table format and HTML texts/labels keep changing every time.
Understanding US Student Loan debt

Understanding US Student Loan debt

This week the data was inspired from the Dignity & Debt project. This will help in understanding and spreading awareness around Student Loan debt. The data source is here The objective for this is to perform data visualization and determine the most preferred method of payment for student loans in the US. I will use patchwork package to combine plots. Loading the data loans <- read.csv("https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-11-26/loans.csv") glimpse(loans) ## Observations: 291 ## Variables: 10 ## $ agency_name <fct> "Account Control Technology, Inc.
Amusement Park Injuries in TX, USA

Amusement Park Injuries in TX, USA

Amusement park injuries data is from data.world. This is part of the weekly #TidyTuesday project aimed at the R ecosystem on Twitter. The data has a lot of text, inconsistent NAs and dates. Objectives Clean the data Perform EDA and Data viz To achieve the objectives we shall answer the following questions How many injuries were recorded per year, per month? What kind of injuries were reported? What were the top causes of injuries?
Data Mining and Analysis using rtweet package

Data Mining and Analysis using rtweet package

Census 2019 in Kenya The 8th 2019 Population and Housing Census started from the night of 24/25th August 2019 and ended on 31st August 2019. Census involved counting of people within the border of Kenya at a specific time. Census is an important process for the Govenrment as it provides evidence for proper planning and resource allocation, policy formulation and targeting of development plans. You can read more about the census here and here

Getting Started with a Blog

I have been creating this blog in my mind for months and hey I finally did it! Below I will show you how I set up my personal blog using R Blogdown, Hugo, Github and Netlify. I will continuously update and improve it. Comments or suggestions on how to improve it are welcome :-) To begin with, you will need the following to set up your blog Install Blogdown.

R markdown errors - not knitting

R
I was getting errors knitting .Rmarkdown or .Rmd files and the culprint was that I had multiple .Rprofiles in my Home and project directories. The error is as shown below Everytime I restarted the machine it was loading the previous workspace with the following error. At first I thought .RData was the culprint and I unliked it using unlink("~/.RData"). It still did not solve the problem. I had updated to the latest Rversion and my first instinct was update libraries, uninstall and reinstall R+Rstudio but still the error was there anytime I tried knitting.
Data mining and wrangling : A case of Eid Occurance

Data mining and wrangling : A case of Eid Occurance

Finally, Eid is here! Id-Ul-Fitr commonly known as Eid marks the end of fasting (Ramadhan) and is the first day of the Islamic month Shawwal. I spent my weekend learning data mining with rvest and analysing data for Eid observations. The following link contains information about Eid, its occurence of per Day, Month, year. For today, I intend to only mine the table and explore. Objectives Mine data - table - from a URL using the package rvest (this was my first time and its really simple)