Publications by Josh Almoite

EPSY5380_Lab1_JoshAlmoite.R

16.09.2020

Lab1: Introduction to data EPSY5380 (Dr.Jung) source("http://www.openintro.org/stat/data/cdc.R") names(cdc) ## [1] "genhlth" "exerany" "hlthplan" "smoke100" "height" "weight" "wtdesire" ## [8] "age" "gender" EXERCISE 1 ANSWERS 20,000 cases which are the observations from the data set There are 9 variables Categorical,Nominal: exera...

1543 sym R (4615 sym/62 pcs) 9 img

EPSY5380_Lab1_JoshAlmoite.R

18.09.2020

Lab1: Introduction to data EPSY5380 (Dr.Jung) source("http://www.openintro.org/stat/data/cdc.R") names(cdc) ## [1] "genhlth" "exerany" "hlthplan" "smoke100" "height" "weight" "wtdesire" ## [8] "age" "gender" EXERCISE 1 ANSWERS 20,000 cases which are the observations from the data set There are 9 variables Categorical,Nominal: exera...

1543 sym R (4615 sym/62 pcs) 9 img

EPSY5380_Lab2_JoshAlmoite.R

23.10.2020

Lab2: Foundations for statistical inference EPSY5380 (Dr.Jung) download.file("http://www.openintro.org/stat/data/ames.RData", destfile = "ames.RData") load("ames.Rdata") area <- ames$Gr.Liv.Area price <- ames$SalePrice summary(area) ## Min. 1st Qu. Median Mean 3rd Qu. Max. ## 334 1126 1442 1500 1743 5642 hist(area, b...

5183 sym R (4326 sym/34 pcs) 7 img

JoshBrfssCoursera

20.11.2020

library(ggplot2) library(dplyr) load("brfss2013.RData") Part 1: Data The Behavioral Risk Factor Surveillance System is an observational type of data collection since the subjects are not assigned to random groupings. This data set is aimed to identify risk factors and variables that are affecting the target adult population on this survey. The ...

2618 sym R (995 sym/9 pcs) 3 img

EPSY5380_Lab4_JoshAlmoite.RmD

15.11.2020

Lab4: Inference for Categorical Data EPSY5380 (Dr.Jung) download.file("http://www.openintro.org/stat/data/atheism.RData", destfile = "atheism.RData") load("atheism.RData") summary(atheism) ## nationality response year ## Pakistan : 5409 atheist : 5498 Min. :2005 ## France : 335...

1911 sym R (1405 sym/17 pcs) 2 img

EPSY5380_Lab3_JoshAlmoite.Rmd

08.11.2020

Lab3: Inference for Numerical Data EPSY5380 (Dr.Jung) download.file("http://www.openintro.org/stat/data/nc.RData", destfile = "nc.RData") load("nc.RData") summary(nc) ## fage mage mature weeks premie ## Min. :14.00 Min. :13 mature mom :133 Min. :20.00 full term:846 ## 1st Qu.:25....

1900 sym R (3857 sym/18 pcs) 4 img