Publications by Renida Kasa

Inference for categorical data - DATA606 - LAB 6

15.10.2023

Getting Started Load packages In this lab, we will explore and visualize the data using the tidyverse suite of packages, and perform statistical inference using infer. The data can be found in the companion package for OpenIntro resources, openintro. Let’s load the packages. library(tidyverse) library(openintro) library(infer) The data You will...

10495 sym R (4493 sym/34 pcs) 1 img

DATA 607 - Project 2 - Dataset 1.3

15.10.2023

Project 2 - Data Transformation The goal of this assignment is to give you practice in preparing different datasets for downstream analysis work. Your task is to: Choose any three of the “wide” datasets identified in the course Slack channel. (You may use your own dataset; please don’t use my Sample Post dataset, since that was used in your ...

2443 sym R (9743 sym/23 pcs)

DATA607- Project 2 - Dataset 2.3

15.10.2023

Project 2 - Data Transformation The goal of this assignment is to give you practice in preparing different datasets for downstream analysis work. Your task is to: Choose any three of the “wide” datasets identified in the course Slack channel. (You may use your own dataset; please don’t use my Sample Post dataset, since that was used in your ...

1614 sym R (5554 sym/11 pcs)

DATA605 HW7

16.10.2023

Let X1, X2, . . . , Xn be n mutually independent random variables, each of which is uniformly distributed on the integers from 1 to k. Let Y denote the minimum of the Xi’s. Find the distribution of Y. P(Y≤y) = 1 − P(Y>y) P(Y≤y)= 1 − P(min(X1, X2,…, Xn) > y) P(Y≤y)= 1 − P(X1 > y, X2 > y,…, Xn > y) P(Y≤y)= 1 − ((k-y)/k) ^n Then...

1672 sym

DATA607 - Assignment 5 – Tidying and Transforming Data

12.10.2023

Assignment – Tidying and Transforming Data Your task is to: (1) Create a .CSV file (or optionally, a MySQL database!) that includes all of the information above. You’re encouraged to use a “wide” structure similar to how the information appears above, so that you can practice tidying and transformations as described below. (2) Read the i...

2831 sym R (3463 sym/12 pcs) 1 img

Foundations for statistical inference - Confidence intervals - DATA606 - LAB 5B

11.10.2023

If you have access to data on an entire population, say the opinion of every adult in the United States on whether or not they think climate change is affecting their local community, it’s straightforward to answer questions like, “What percent of US adults think climate change is affecting their local community?”. Similarly, if you had demog...

13182 sym R (2206 sym/18 pcs) 1 img 1 tbl

Foundations for statistical inference - Sampling distributions - DATA606 - Lab 5A

11.10.2023

In this lab, you will investigate the ways in which the statistics from a random sample of data can serve as point estimates for population parameters. We’re interested in formulating a sampling distribution of our estimate in order to learn about the properties of the estimate, such as its distribution. Setting a seed: We will take some random ...

14525 sym R (6304 sym/32 pcs) 4 img

DATA605 Assignment #6

08.10.2023

A bag contains 5 green and 7 red jellybeans. How many ways can 5 jellybeans be withdrawn from the bag so that the number of green ones withdrawn will be less than 2? choose(5,5)*choose(7,0)+choose(5,4)*choose(7,1) ## [1] 36 A certain congressional committee consists of 14 senators and 13 representatives. How many ways can a subcommittee of 5 be f...

2527 sym

DATA607 Project 1 - Tournament

02.10.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 ## ...

1698 sym R (5053 sym/18 pcs)

DATA605 Assignment #5

02.10.2023

Bayesian 1.A new test for multinucleoside-resistant (MNR) human immunodeficiency virus type 1 (HIV-1) variants was recently developed. The test maintains 96% sensitivity, meaning that, for those with the disease, it will correctly report “positive” for 96% of them. The test is also 98% specific, meaning that, for those without the disease, 98% ...

6164 sym