Publications by Samkit Anjal Dhanki

ANLY 512 Lab 2

30.03.2023

ANLY 512 Lab 1 Samkit Dhanki — 2023-03-30 Key Indicator Analysis Indicators Symbol Name PE_Ratio EPS Dividend_Yield_Ratio Market_Cap_Bn C C Citigroup, Inc.  6.462728 6.909774 0.04511278 89.43984 JPM JPM JP Morgan Chase & Co.  10.681555 9.594354 0.03103662 380.10552 MS MS Morgan Stanley 14.022763 ...

530 sym R (4373 sym/1 pcs) 1 tbl

Anscombe’s quartet

13.03.2023

Objectives The objectives of this problem set is to orient you to a number of activities in R and to conduct a thoughtful exercise in appreciating the importance of data visualization. For each question enter your code or text response in the code chunk that completes/answers the activity or question requested. To submit this homework you will...

2683 sym R (6508 sym/25 pcs) 3 img

DocumeAssignment 5: Naive Bayes

10.03.2023

library(naivebayes) ## naivebayes 0.9.7 loaded # Load airquality dataset airquality <- read.csv('airquality.csv') # Create target variable 'class' airquality$class <- ifelse(airquality$RH <= mean(airquality$RH,na.rm = T), 'No', 'Yes') airquality$class <- as.factor(airquality$class) # Split dataset into training and testing sets set.seed(42) train...

15 sym R (1327 sym/12 pcs)

More Visualization Processes

07.03.2023

Directions The objective of this assignment is to complete and explain basic plots before moving on to more complicated ways to graph data. To ensure accuracy pay close attention to axes and labels, you will be evaluated based on the accuracy and expository nature of your graphics. Make sure your axis labels are easy to understand and are comp...

1867 sym R (3819 sym/12 pcs) 6 img

Problem Set 3 - ggplot2 basics

21.02.2023

Directions During ANLY 512 we will be studying the theory and practice of data visualization. We will be using R and the packages within R to assemble data and construct many different types of visualizations. We begin by studying some of the theoretical aspects of visualization. To do that we must appreciate the basic steps in the process of ...

2826 sym 6 img

ANLY 512, Assignment 2

15.02.2023

Directions In this chapter we discussed why well-designed data graphics are important and we described a taxonomy for understanding their composition. The objective of this assignment is for you to understand what characteristics you can use to develop a great data graphic. Each question is worth 5 points. To submit this homework you will create...

6376 sym 2 img

Document

25.01.2023

Directions During ANLY 512 we will be studying the theory and practice of data visualization. We will be using R and the packages within R to assemble data and construct many different types of visualizations. Before we begin studying data visualizations we need to develop some data wrangling skills. We will use these skills to wrangle our d...

2944 sym R (12746 sym/19 pcs)