Publications by Author 1

FA05 Group07

12.09.2023

1 Total Entries How many entries are in the datafile? First we read the file: data <- readRDS("C:/A_TTU/2023 FALL/IE 2341 001/A03_R Markdown/FairTraders_Receipts_and_StorageBins.rds") Then we find the number of rows (number of entries): entries <- nrow(data) entries ## [1] 6275201 2 Percentages 2.1 Business Units What percentage of product was r...

945 sym

Flipped Assignment 5 - Group 11

12.09.2023

FairTraders_Receipts_and_StorageBins <- readRDS("C:/Users/emmaa/Downloads/FairTraders_Receipts_and_StorageBins.rds") 0.1 1. How many entries are in the data file? There are 6,275,201 entries in the Fair_Traders_Receipts_and_StorageBins data file. nrow(FairTraders_Receipts_and_StorageBins) ## [1] 6275201 0.2 2. What percentage of product was ...

1414 sym

Test Document

12.09.2023

1 First Header Insert inline LaTex between dollar signs, e.g. \(\mu\). A great online equation editor for LaTex may be found at CodeCogs (https://latex.codecogs.com/eqneditor/editor.php) 1.1 First Subheader Can insert LaTex on its own line between double dollar signs, e.g. \[ x+\frac{1}{2}=\gamma_1 \] Text between double stars is bold. Bulleted L...

1005 sym 1 img 1 tbl

TestDocument

11.09.2023

1 First Header Insert inline LaTex between dollar signs, e.g. \(\mu\). A great online equation editor for LaTex may be found at CodeCogs (https://latex.codecogs.com/eqneditor/editor.php) 1.1 First Subheader Can insert LaTex on its own line between double dollar signs, e.g. \[ x+\frac{1}{2}=\gamma_1 \] Text between double stars is bold. Bullet...

1014 sym 1 img 1 tbl

test doc markdown

11.09.2023

1 First Header Insert inline LaTex between dollar signs, e.g. \(\mu\). A great online equation editor for LaTex may be found at CodeCogs (https://latex.codecogs.com/eqneditor/editor.php) 1.1 First Subheader Can insert LaTex on its own line between double dollar signs, e.g. \[ x+\frac{1}{2}=\gamma_1 \] Text between double stars is bold. Bullet...

1014 sym 1 img 1 tbl

TestDocument1

10.09.2023

1 First Header Insert inline LaTex between dollar signs, e.g. \(\mu\). A great online equation editor for LaTex may be found at CodeCogs (https://latex.codecogs.com/eqneditor/editor.php) 1.1 First Subheader Can insert LaTex on its own line between double dollar signs, e.g. \[ x+\frac{1}{2}=\gamma_1 \] Text between double stars is bold. Bullet...

1014 sym 1 img 1 tbl

Test Document

09.09.2023

1 First Header Insert inline LaTex between dollar signs, e.g. \(\mu\). A great online equation editor for LaTex may be found at CodeCogs (https://latex.codecogs.com/eqneditor/editor.php) 1.1 First Subheader Can insert LaTex on its own line between double dollar signs, e.g. \[ x+\frac{1}{2}=\gamma_1 \] Text between double stars is bold. Bullet...

1014 sym 1 img 1 tbl

Assignment 4

08.09.2023

1 Assignment An environmental group would like to test the hypothesis that the mean mpg of cars manufactured in the US is less than that of those manufactured in Japan.  Towards this end, they sampled n1=35 US and n2=28 Japanese cars, which were tested for mpg fuel efficiency.  (As a caveat, assume that this is a random sample from a large p...

2385 sym 6 img

FA_04/Group_07

07.09.2023

Data taken from csv file dat<-read.csv("https://raw.githubusercontent.com/tmatis12/datafiles/main/US_Japanese_Cars.csv") colnames(dat)<-c("US Made Car", "Japan Made Car") head(dat) ## US Made Car Japan Made Car ## 1 18 24 ## 2 15 27 ## 3 18 27 ## 4 16 25 ##...

1296 sym 6 img

Flip Assignment 4

07.09.2023

Data of mpg of US cars and Japanese cars 1 1. Normality before transforming 1.1 1.1 Normality of the mpg of US cars before transforming Create the Normal probability plot of US cars Only the last two data are far from the normal line, the mpg of US cars before transforming follows the normal distribution. 1.2 1.2 Normality of the mpg of Jap...

1702 sym 6 img