Publications by Folorunsho Atanda

Data 605 Discussion Week 3

11.02.2024

Load library suppressWarnings( library(tinytex) ) Question T10 Page 307 A matrix \(A\) is idempotent if \(A^2 = A\). Show that the only possible eigenvalues of an idempotent matrix are \(\lambda = 0\) and \(\lambda = 1\).Then give and example of a matrix that is idempotent and has both of these two values as eigenvalues. Let \(\lambda\) b...

1998 sym R (40 sym/1 pcs)

Data 605 HW 2

04.02.2024

suppressMessages( library(tidyverse) ) Problem Set 1.1 Show that ATA \(\neq\) AAT in general form Let A be a m by n matrix such that _m \(\neq\) n. Therefore _ATA will equal a matrix with dimension n by n. While AAT will equal a matrix with dimension m by m. Since m \(\neq\) n, then ATA \(\neq\) AAT. QED For example: A <- matrix(seq(1,...

602 sym R (2497 sym/23 pcs)

Data 605 HW 1

31.01.2024

Load library suppressMessages({ library(tidyverse) }) Part 1: Plot initials FA x_f = c(rep(0, 500), seq(0, 1, length.out = 500), seq(0, 1, length.out = 500)) y_f = c(seq(-1, 1, length.out = 500), rep(1, 500), rep(0, 500)) z_f = rbind(x_f, y_f) plot(y_f ~ x_f, xlim = c(-3, 3), ylim = c(-3, 3)) x_a = c...

188 sym R (1929 sym/9 pcs) 3 img

Data607-Final_Project

05.12.2023

Data Preparation Posit Cloud: https://posit.cloud/spaces/449020/content/7089697 Research question Has the overall wealth/poverty divide in the world changed for better or worse in the past ~30 years? How have certain factors affected the change? Cases Each case is an individual recording of a country, when the poverty report was done, along wi...

5145 sym R (87050 sym/169 pcs) 29 img

Project_Proposal

10.11.2023

Data Preparation # load data library(data.table) library(tidyverse) url <- "https://raw.githubusercontent.com/folushoa/Data-Science/Data-606/twitchdata.csv" proposal_data <- fread(url, header = TRUE) head(proposal_data, 10) Research question You should phrase your research question in a way that matches up with the scope of inference your ...

1584 sym R (3503 sym/9 pcs) 3 img

Assignment_10

08.11.2023

Chapter 2 Code suppressWarnings({ library(tidyverse) library(tidytext) library(janeaustenr) library(textdata) library(wordcloud) library(reshape2) }) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.2 ✔ readr ...

351 sym R (12444 sym/56 pcs) 7 img

Tidyverse_Project

06.11.2023

For this assignment I decided to use the map() function in the **purrr* package of the tidyverse. I chose map() because it allows for element operation of a vector or list. It gives us a replacement for for loops. library(tidyverse) ## ── Attaching core tidyverse packages ───────────────────────�...

534 sym R (2163 sym/8 pcs)

Assigment_9

26.10.2023

#Load library library(httr) library(jsonlite) 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 ## ✔ ggplot2 3.4.3 ✔ tibble 3.2.1...

35 sym R (2607 sym/6 pcs)

Assignment_7

16.10.2023

Load library library(data.table) 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 ## ✔ ggplot2 3.4.3 ✔ tibble 3.2.1 ## ✔ lubri...

433 sym R (3526 sym/15 pcs)

Project_2

08.10.2023

PROJECT 2 DATA 607 MSDS Preparing different datasets for downstream analysis work. #——————————————————————————————————- Ron Balaban Possibly needed libraries library(tidyverse) ## ── Attaching core tidyverse packages ───────────────────�...

7330 sym R (39840 sym/120 pcs) 28 img