Publications by Ganesh Kumar

Midterm_1

25.10.2023

Question 1: Basic Data Analysis in R In 1986, the Challenger space shuttle exploded during “throttle up” due to catastrophic failure of o-rings (seals) around the rocket booster. The data (real) on all space shuttle launches prior to the Challenger disaster are in the file challenger.csv. The data folder contains the same data in 3 differen...

6477 sym R (3837 sym/57 pcs) 2 img

Week_6

16.10.2023

I. Fundamental Distributions : I choose Uniform Distribution, Bernoulli Distribution and Exponential Distribution. Uniform Distribution : The uniform distribution is a symmetric probability distribution where all outcomes have an equal likelihood of occurring. All values in the distribution have a constant probability, making them uniformly d...

5137 sym 4 img

Week_5

02.10.2023

I. Bayes Theorem : In probability & Statistics, Bayes theorem describes the probability of event, based on prior knowledge of conditions related to event.In simple terms, Bayes’ Theorem helps us adjust the probabilities when we receive new data. It provides a systematic way to reason and update our situation. Formula : P(A|B) = P(B/A)P(A) / P...

1465 sym R (4856 sym/37 pcs) 1 img

Week_4

26.09.2023

Remove all objects and consloe : rm(list=ls()) cat("\f") Read train.csv : graphics.off() train <- read.csv("C:/Users/LENOVO/Downloads/Data Analytics/HW 1 Titanic/titanic/train.csv") Checking the imported data (first few rows) : head(train[,c(2,3,4)], n=2) ## X Survived X.1 ## 1 Sex 0 1 ## 2 female 3 91 Checking th...

226 sym 2 img

Week_4

25.09.2023

Remove all objects and consloe : rm(list=ls()) cat("\f") Read train.csv : graphics.off() train <- read.csv("C:/Users/LENOVO/Downloads/Data Analytics/HW 1 Titanic/titanic/train.csv") Checking the imported data (first few rows) : head(train[,c(2,3,4)], n=2) ## X Survived X.1 ## 1 Sex 0 1 ## 2 female 3 91 Checking th...

231 sym 2 img

Week_3

18.09.2023

Part 1 Data Types in classes : Logical : Logical has two values TRUE, FALSE and NA. Integer : Integer has only whole numbers 1,2,3,4,5… Numeric : Numeric has integer, double ( floating numbers). Character : It contains string and arbitrary combinations of items( “Data types”). Other Data Structures : Vector : Vector is a most common data s...

1298 sym R (3328 sym/21 pcs) 1 img

Week_2

11.09.2023

Problem 1.9 Fisher’s irises Part 1 How many cases were included in the data? iris ## Sepal.Length Sepal.Width Petal.Length Petal.Width Species ## 1 5.1 3.5 1.4 0.2 setosa ## 2 4.9 3.0 1.4 0.2 setosa ## 3 4.7 3.2 1.3 0.2...

887 sym 5 img