Bhisham C. Gupta - Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP

Здесь есть возможность читать онлайн «Bhisham C. Gupta - Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP» — ознакомительный отрывок электронной книги совершенно бесплатно, а после прочтения отрывка купить полную версию. В некоторых случаях можно слушать аудио, скачать через торрент в формате fb2 и присутствует краткое содержание. Жанр: unrecognised, на английском языке. Описание произведения, (предисловие) а так же отзывы посетителей доступны на портале библиотеки ЛибКат.

Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP: краткое содержание, описание и аннотация

Предлагаем к чтению аннотацию, описание, краткое содержание или предисловие (зависит от того, что написал сам автор книги «Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP»). Если вы не нашли необходимую информацию о книге — напишите в комментариях, мы постараемся отыскать её.

Introduces basic concepts in probability and statistics to data science students, as well as engineers and scientists Aimed at undergraduate/graduate-level engineering and natural science students, this timely, fully updated edition of a popular book on statistics and probability shows how real-world problems can be solved using statistical concepts. It removes Excel exhibits and replaces them with R software throughout, and updates both MINITAB and JMP software instructions and content. A new chapter discussing data mining—including big data, classification, machine learning, and visualization—is featured. Another new chapter covers cluster analysis methodologies in hierarchical, nonhierarchical, and model based clustering. The book also offers a chapter on Response Surfaces that previously appeared on the book’s companion website.
Statistics and Probability with Applications for Engineers and Scientists using MINITAB, R and JMP, Second Edition Features two new chapters—one on Data Mining and another on Cluster Analysis Now contains R exhibits including code, graphical display, and some results MINITAB and JMP have been updated to their latest versions Emphasizes the p-value approach and includes related practical interpretations Offers a more applied statistical focus, and features modified examples to better exhibit statistical concepts Supplemented with an Instructor's-only solutions manual on a book’s companion website 
is an excellent text for graduate level data science students, and engineers and scientists. It is also an ideal introduction to applied statistics and probability for undergraduate students in engineering and the natural sciences.

Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP — читать онлайн ознакомительный отрывок

Ниже представлен текст книги, разбитый по страницам. Система сохранения места последней прочитанной страницы, позволяет с удобством читать онлайн бесплатно книгу «Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP», без необходимости каждый раз заново искать на чём Вы остановились. Поставьте закладку, и сможете в любой момент перейти на страницу, на которой закончили чтение.

Тёмная тема
Сбросить

Интервал:

Закладка:

Сделать

Example 2.3.4(Rod manufacturing) The following data give the lengths (in millimeters) of 40 randomly selected rods manufactured by a company:

145 140 120 110 135 150 130 132 137 115
142 115 130 124 139 133 118 127 144 143
131 120 117 129 148 130 121 136 133 147
147 128 142 147 152 122 120 145 126 151

Prepare a frequency distribution table for these data.

Solution:Following the steps described previously, we have the following:

1 Range

2 Number of classes

3 Class width

The six classes used to prepare the frequency distribution table are as follows: 110–under 117, 117–under 124, 124–under 131, 131–under 138, 138–under 145, 145–152.

Note that in the case of quantitative data, each class is defined by two numbers. The smaller of the two numbers is called the lower limit and the larger is called the upper limit. Also note that except for the last class, the upper limit does not belong to the class. For example, the data point 117 will be assigned to class two and not class one. Thus, no two classes have any common point, which ensures that each data point will belong to one and only one class. For simplification, we will use mathematical notation to denote the classes above as

Here the square bracket symbol implies that the beginning point belongs to - фото 143

Here, the square bracket symbol “[“ implies that the beginning point belongs to the class, and the parenthesis”)” implies that the endpoint does not belong to the class. Then, the frequency distribution table for the data in this example is as shown in Table 2.3.4.

Table 2.3.4Frequency table for the data on rod lengths.

Frequency Relative Cumulative
Classes Tally or count frequency Percentage frequency
Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 144 /// 3 Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 145 7.5 3
Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 146 ///// // 7 Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 147 17.5 10
Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 148 ///// /// 8 Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 149 20.0 18
Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 150 ///// // 7 Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 151 17.5 25
Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 152 ///// / 6 Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 153 15.0 31
Statistics and Probability with Applications for Engineers and Scientists Using MINITAB R and JMP - изображение 154 ///// //// 9 картинка 155 22.5 40
Total 40 1 100

The same frequency distribution table can be obtained by using MINITAB as follows:

MINITAB

1 Enter the data in column C1.

2 From the Menu bar select Data Recode To Text. This prompts the following dialog box to appear on the screen.

3 Enter C1 in the box under Recode values in the following columns.

4 Select Recode ranges of values from the pulldown menu next to Method.

5 Enter Lower and Upper endpoints as needed and make sure to change the final upper endpoint to 152.1. Type Recoded values in the interval format as previously shown.

6 Select Lower endpoint only from the pulldown menu next to Endpoints to include. Then, for the Storage location for the recoded columns, select At the end of the current worksheet from the pulldown menu.

7 Now from the Menu bar select Stat Tables Tally Individual Variables. This prompts the following dialog box to appear on the screen:

8 In this dialog box, enter C2 Recoded Data in the box under variables.

9 Check all the boxes under Display and click OK. The frequency distribution table as shown below will appear in the Session window

This frequency distribution table also can be obtained by using R as follows:

USING R

First, we define the required classes using the built in ‘seq()’ function. Then, we use the ‘cut()’ function to assign a corresponding class to each observation. As explained in Example 2.3.2, we then use the ‘table()’ function on class variable and the ‘cusum()’ function on the frequency results. The task can be completed by running the following R code in the R Console window.

#Assign given data to the variable RodData RodData = c(145,140,120,110,135,150,130,132,137,115,142,115,130, 124,139,133,118,127,144,143,131,120,117,129,148,130,121,136,133, 147,147,128,142,147,152,122,120,145,126,151) #To define the intervals breaks = seq(110, 152, by=7) #To assign each observation to its interval RodData.split = cut(RodData, breaks, right=FALSE) #To obtain the frequency of data in each class RodData.freq = table(RodData.split) #To combine necessary columns freq.dist = cbind(RodData.freq,100*RodData.freq/sum(RodData.freq), cumsum(RodData.freq), 100*cumsum(RodData.freq)/sum(RodData.freq)) #To name the table columns colnames(freq.dist) = c(‘Frequency’,‘Percentage’, ‘Cum.Frequency’,‘Cum.Percentage’) freq.dist #R output

Читать дальше
Тёмная тема
Сбросить

Интервал:

Закладка:

Сделать

Похожие книги на «Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP»

Представляем Вашему вниманию похожие книги на «Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP» списком для выбора. Мы отобрали схожую по названию и смыслу литературу в надежде предоставить читателям больше вариантов отыскать новые, интересные, ещё непрочитанные произведения.


Отзывы о книге «Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP»

Обсуждение, отзывы о книге «Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP» и просто собственные мнения читателей. Оставьте ваши комментарии, напишите, что Вы думаете о произведении, его смысле или главных героях. Укажите что конкретно понравилось, а что нет, и почему Вы так считаете.

x