Publications by Lapika Gradi

Assignment 4

25.11.2020

# Data Import #This step we install the the fivethirtyeight library then we read the drinks data. library(fivethirtyeight) head(drinks) ## country beer_servings spirit_servings wine_servings ## 1 Afghanistan 0 0 0 ## 2 Albania 89 132 54 ## 3 ...

6 sym R (1963 sym/6 pcs) 1 img

Assignment 3

20.11.2020

Data Import This step import and read the data and delete missing values. library(tidyverse) library(colorspace) CollegeScorecard <- read_csv("http://jsuleiman.com/datasets/CollegeScorecard.csv") # Rename column where names is "CITY" names(CollegeScorecard)[names(CollegeScorecard) == "CITY"] <- "City" head(CollegeScorecard) ## # A tibble: 6 x 1,7...

151 sym R (5075 sym/16 pcs)

Assignment 2

16.11.2020

Instructions Refer to the detailed instructions for this assignment in Brightspace. Data Import Don’t alter the three code chunks in this section. First we read in the two data sets and deleting missing values. library(tidyverse) library(colorspace) fluoride <- read_csv("http://jamessuleiman.com/teaching/datasets/fluoride.csv") fluoride <- flu...

1400 sym R (3148 sym/14 pcs) 1 img

Document

15.11.2020

Instructions Refer to the detailed instructions for this assignment in Brightspace. Data Import Don’t alter the three code chunks in this section. First we read in the two data sets and deleting missing values. library(tidyverse) library(colorspace) fluoride <- read_csv("http://jamessuleiman.com/teaching/datasets/fluoride.csv") fluoride <- flu...

1400 sym R (3148 sym/14 pcs) 1 img

Assignment 1

02.11.2020

This assignment is not really a coding assignment. The purpose is mostly to get you used to creating reports in R as you’ll need to do this for future assignments. We will cover reporting in more depth later in the course. Instructions In the YAML header, change the author name to your name and the date to the current date. (10 points) In the...

863 sym R (363 sym/2 pcs)

MBA 683 Assignment 2

18.02.2021

I import the data as described in the assignment, then I started preparing the data for my analysis. I decide to look at the data before preparing it for my analysis. ## # A tibble: 6 x 6 ## Number Year Album Artist Genre Subgenre ## <dbl> <dbl> <chr> <chr> <chr> <chr> ...

538 sym R (1379 sym/2 pcs) 1 img

MBA 683 Assignment 4

10.03.2021

1 Introduction For this assignment, I started first by looking a dataset to use and I decided to go with the Drug Overdose Death Rates Increase Dataset in the cdc.gov website. This data shows us the percent change from 2017 to 2018 for drug overdose deaths occurring within the USA. 2 Data Manipulation After I imported the data, I did some manipu...

1502 sym R (257 sym/1 pcs)

MBA 683 Assignment 4

10.03.2021

1 Introduction For this assignment, I started first by looking a dataset to use and I decided to go with the Drug Overdose Death Rates Increase Dataset in the cdc.gov website. This data shows us the percent change from 2017 to 2018 for drug overdose deaths occurring within the USA. 2 Data Manipulation After I imported the data, I did some manipu...

1502 sym R (257 sym/1 pcs)