Publications by A Singh

quiz 3

08.08.2023

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.2 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.2 ✔ tidyr 1.3.0...

727 sym R (1810518 sym/27 pcs) 2 img

IC9 SQUID

05.08.2023

IC9 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.2 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.2 ✔ tidyr 1...

8116 sym R (11337 sym/36 pcs) 11 img

Document

04.08.2023

Image by Gordon Johnson from Pixabay Data Import Download flag.csv and flag.names to your working directory. Make sure to set your working directory appropriately! Let’s look at some information about this file. Open flag.names in RStudio by double clicking it in the files pane in bottom left. Read through this file. Who is the donor of th...

4297 sym R (40813 sym/43 pcs) 1 img

BMI/ FUNCTIONS

03.08.2023

f <- function() { # this is an empty function with no arguments or body code } class(f) ## [1] "function" f() ## NULL f <- function(){ print("Hello, world!") } f() ## [1] "Hello, world!" cat is to catonate f <- function(friend){ cat("Hello", friend, "!\n") } f("Mike") ## Hello Mike ! f(50) ## Hello 50 ! Add some intelligence ...

223 sym

MnM Example IC8

03.08.2023

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.2 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.2 ✔ tidyr 1.3.0...

294 sym R (5182 sym/37 pcs) 10 img

Project 2 Chickens

03.08.2023

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.2 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.2 ✔ tidyr 1.3.0...

1008 sym R (7144 sym/42 pcs)

First Mark Down

27.07.2023

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within...

598 sym 1 img

Horrors Of The Atlantic

07.07.2023

Horrors of the Atlantic Ocean Part 1 When I saw this data set, I was intrigued about the data set. When I opened it, I was shocked. How many lives have been snatched away, taken away, uprooted from their homes, and crossed the Atlantic into the Americas? All men and women with vast histories on this 32.5 MB files. How much documentation is th...

11780 sym R (7247 sym/38 pcs) 8 img

Document

03.07.2023

# This tutorial is part of Computerworld's How to Make a Map with R in 10 (fairly) Easy Steps # https://www.computerworld.com/article/3038270/data-analytics/create-maps-in-r-in-10-fairly-easy-steps.html # by Sharon Machlis sharon_machlis@idg.com # Set various values needed, including names of files and FIPS codes for New Hampshire and South Car...

2390 sym R (10767 sym/74 pcs) 7 img

Document

30.06.2023

library(tidyverse) ## Warning: package 'tidyr' was built under R version 4.3.1 library(plotly) ## Warning: package 'plotly' was built under R version 4.3.1 library(rvest) ## Warning: package 'rvest' was built under R version 4.3.1 library(stringr) #specifying url <- 'http://www.imdb.com/search/title?count=100&release_date=2016,2016&title_type=f...

497 sym R (22652 sym/73 pcs) 2 img