Publications by Kossi Akplaka

Tidyverse assignment

12.11.2023

Load the package # Install and load required packages #install.packages("tidyverse") library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.2 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.0 ## ✔ ...

333 sym R (3249 sym/9 pcs) 1 img

Assignement9

05.11.2023

Load package We can load the different package needed to get the data and transform the data library(tidyverse) library(httr) library(jsonlite) library(tibble) Detail about the data I’ll get the data from New York Times API. The website is “https://developer.nytimes.com/docs/archive-product/1/overview”. “The Archive API returns an arra...

5895 sym 1 img

Project 3 - The most valued data science skills

30.10.2023

Loading libraries: Introduction: The goal of this project is to find and use data to answer the question “Which are the most valued data science. Our group members are: Carol Campbell, Kossi Akplaka, Souleymane Doumbia and Saloua Daouki. We began by searching various websites for suitable data before finally settling on a Kaggle dataset by Lu...

4445 sym Python (26909 sym/44 pcs) 10 img

Assignment 7

21.10.2023

Create data I created the data in the notebook and load that to my Github Load the data To load the information from the HTML, XML, and JSON sources into separate R data frames, you can use the following code. We will use the rvest package for HTML, XML and xml2 package for XML, and rjson for JSON. library(rvest) # load html file library(xml2)...

774 sym R (4787 sym/13 pcs)

Project2-Data1

14.10.2023

Import libraries library(dplyr) library(tidyr) library(qcc) # for pareto-analysis Analysis of DATA 1 I got the first data from the student: Sean Amato. I saved that on my github after I downloaded that on Slack. Collect the data df1 = read.csv('https://raw.githubusercontent.com/Kossi-Akplaka/Data607-data_acquisition_and_management/main/Project...

2772 sym 1 img

Project2-Data2

15.10.2023

Import libraries library(dplyr) library(tidyr) library('zoo') # fill the missing values with the previous non missing value library(ggplot2) Collect the data This data was posted on Slack by the student: Marley Myrianthopoulos df2 = read.csv("https://raw.githubusercontent.com/Kossi-Akplaka/Data607-data_acquisition_and_management/main/Project%2...

3222 sym 1 img

Project2-Data3

15.10.2023

Import libraries library(dplyr) library(tidyr) library(ggplot2) library(knitr) Collect the data This data was collected on Slack from the student: FOMBA KASSOH. df3 = read.csv("https://raw.githubusercontent.com/Kossi-Akplaka/Data607-data_acquisition_and_management/main/Project%202/Data3-USA-Development-Indicators.csv") kable(head(df3)) Count...

2317 sym 1 img 3 tbl

Assignment 05

08.10.2023

Import libraries library(dplyr) library(tidyr) Collect the data The data is a csv format and can be found using this link df = read.csv('https://raw.githubusercontent.com/Kossi-Akplaka/Data607-data_acquisition_and_management/main/Assignment5/Assignment5-data607.csv', sep = ',') Remove the third row since there is no information and fill missing ...

1337 sym R (2822 sym/12 pcs)

Project 1

30.09.2023

Getting started Load packages Let’s load these packages library(tidyverse) library(stringr) library(knitr) Import the chess data from github chess_df = read_csv(file = 'https://raw.githubusercontent.com/Kossi-Akplaka/Data607-data_acquisition_and_management/main/Project%201/chess.txt', col_names = FALSE) Let’s have a glimpse of the data head...

1352 sym R (3385 sym/17 pcs) 1 tbl

Assignment 3

22.09.2023

Please deliver links to an R Markdown file (in GitHub and rpubs.com) with solutions to the problems below. You may work in a small group, but please submit separately with names of all group participants in your submission. 1. Provide code that identifies the majors that contain either “DATA” or “STATISTICS” Using the 173 majors listed...

10860 sym