Publications by BSc 3rd Sem

Fe Illite R code 2023

03.04.2023

This is an R Markdown Notebook. When you execute code within the notebook, the results appear beneath the code. Try executing this chunk by clicking the Run button within the chunk or by placing your cursor inside it and pressing Ctrl+Shift+Enter. plot(cars) Add a new chunk by clicking the Insert Chunk button on the toolbar or by pressing Ctr...

754 sym 1 img

Sampling Distribution Practical Class 2022-2023

20.12.2022

Real datasets in R iris is data set gives the measurements in centimeters of the variables sepal length, sepal width, petal length and petal width, respectively, for 50 flowers from each of 3 species of iris. The species are Iris setosa, versicolor, and virginica. data("iris") head(iris) ## Sepal.Length Sepal.Width Petal.Length Petal.Wid...

4006 sym R (6279 sym/40 pcs) 3 img 6 tbl

Stat Computing Practical List 1 (Hypothesis Test of Proportions)

20.12.2022

one-proportion Z-test The One proportion Z-test is used to compare an observed proportion to a theoretical one, when there are only two categories. This article describes the basics of one-proportion z-test and provides practical examples using R software. Data: For example, we have a population of mice containing half male and have female (p...

3410 sym Python (2783 sym/14 pcs) 2 tbl

Stat Computing Practical List 9 (Hypothesis Test of Correlations)

20.12.2022

#install.packages("ggpubr") library("ggpubr") ## Loading required package: ggplot2 Methods for correlation analyses There are different methods to perform correlation analysis: Pearson correlation (r), which measures a linear dependence between two variables (x and y). It’s also known as a parametric correlation test because it depends to t...

3928 sym R (3148 sym/24 pcs) 3 img 4 tbl

Stat Computing Practical (T distribution , Chi Sq distribution plot)

20.12.2022

Histogram with Normal density line Plot in R # Sample data #set.seed(104) x <- rnorm(200) x2 <- seq(min(x), max(x), length = 40) fun <- dnorm(x2, mean = mean(x), sd = sd(x)) # Histogram hist(x, prob = TRUE, ylim = c(0, max(fun)), main = "Histogram with density curve", col="skyblue") lines(density(x), col = 6, lwd = 4) # X-axis grid...

2673 sym Python (5086 sym/29 pcs) 8 img 2 tbl

Pearson Chi-Square Goodness -of -Fit (BSC Sampling Distribution Practical)

11.01.2023

Chi-square goodness of fit test hypotheses/ Pearson’s Chi-square test The Chi-square goodness of fit test is a statistical hypothesis test used to determine whether a variable is likely to come from a specified distribution or not. It is often used to evaluate whether sample data is representative of the full population. chi-square goodnes...

4132 sym 7 tbl