Publications by Theodora Putrina Gea

Week 6

13.10.2020

1 Latihan 12: Maksimalisasi Ekspektasi Di kelas ini kita akan mengimplementasikan algoritma Expectation Maximization untuk memperkirakan parameter Campuran Gaussian. Metode ini menyediakan pengklasifikasi tak terbimbing yang sangat berguna ketika diasumsikan distribusi Gaussian. Misalkan kita ingin memodelkan parameter populasi yang diasumsikan s...

3755 sym R (446636 sym/14 pcs) 8 img

Optimization4

25.09.2020

1 Bisection Method The bisection method is another approach to finding the root of a continuous function \(f(x)\) on an interval \([a,b]\). The method takes advantage of a corollary of the intermediate value theorem called Bolzano’s theorem which states that if the values of \(f(a)\) and \(f(b)\) have opposite signs, the interval must contain a...

37637 sym R (7264 sym/38 pcs) 15 img

Computational_Statistics

21.09.2020

1 Brief Introduction Please watching this video, to get some ideas about Confidence Intervals (CI) 2 CI in Business This video guide you, how can you apply Confidence Intervals in Business. 3 Your Exercise In this section, your expected to get familiar with confidential intervals exercise: 3.1 Exercise 1 Find a point estimate of average univer...

30395 sym R (7986 sym/82 pcs) 5 img

Week 2

13.09.2020

1 Binomial Distribution 1.1 Question What is a binomial distribution in Statistics? What is binomial distribution used for? Please argue 4 requirements needed to be a binomial distribution? Is a binomial distribution a normal distribution? Suppose there are twenty multiple choice questions in an Statistics class quiz. Each question has five pos...

25211 sym R (562 sym/16 pcs)

LPModeling

18.09.2020

# Case Study 2 A manufacturing manager is in charge of minimizing the total costs (raw materials, labor and storage costs) of the following four months. In Table 3.1 can be found the cost of raw materials of one unit of final product, the demand of final product and the working hours available for each month. Labor costs are of 12 e per hour, an...

4705 sym R (4895 sym/23 pcs) 1 img

ComputationalStatistics4

27.09.2020

1 Introduction As a data scientist you probably retain or reject hypothesis based on measurements of observed samples. The decision is often based on a statistical mechanism called hypothesis testing. Let’s watching the following video: There are three conditions of having hypothesis testing included: Left Tailed Test: When the \(\bar{x}\) is...

56523 sym R (8454 sym/67 pcs) 5 img

Optimization5

04.10.2020

1 General Optimization In mathematics, nonlinear programming (NLP) is the process of solving an optimization problem where some of the constraints or the objective function are nonlinear. An optimization problem is one of calculation of the extrema (maxima, minima or stationary points) of an objective function over a set of unknown real variables...

48155 sym R (8725 sym/33 pcs) 8 img

Computational Statistics6

11.10.2020

##7 Exercise #7.1 Exercice 1 Please work out in R by doing a chi-squared test on the treatment (X) and improvement (Y) columns in treatment.csv data_frame <- read.csv("treatment.csv") table(data_frame$treatment, data_frame$improvement) ## ## improved not-improved ## not-treated 26 29 ## treated...

1123 sym R (1149 sym/11 pcs) 1 img

Computational Statistics 8

28.10.2020

1 Bab 8 Interferensi dalam Regresi Linier Setelah membaca bagian ini, Anda akan mampu untuk: * Memahami distribusi perkiraan regresi. * Membuat perkiraan interval untuk parameter regresi, respon rata-rata, dan prediksi. * Uji signifikansi regresi. Pada bagian akhir, kita akan mendefinisikan model regresi linier sederhana, \(Y_i=\beta_0+\beta_1x_1...

77700 sym R (10077 sym/81 pcs) 10 img

Optimization16

23.12.2020

1 Soal: Let say you would like to make some sausages and you have the following ingredients available: Ingredient <- c("Chicken","Wheat","Starch") Cost <- c(4.32,2.46,1.86) Availability <- c(30,20,17) Sausage <- data.frame(Ingredient,Cost,Availability) Sausage ## Ingredient Cost Availability ## 1 Chicken 4.32...

12885 sym R (389770 sym/76 pcs) 2 img